mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
remove NODE_DREGX_ONCE
* node.h (enum node_type): remove NODE_DREGX_ONCE which is not used anymore. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60347 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
171f968d22
commit
1528a9859c
3 changed files with 0 additions and 9 deletions
|
@ -433,7 +433,6 @@ count_nodes(int argc, VALUE *argv, VALUE os)
|
|||
COUNT_NODE(NODE_DXSTR);
|
||||
COUNT_NODE(NODE_EVSTR);
|
||||
COUNT_NODE(NODE_DREGX);
|
||||
COUNT_NODE(NODE_DREGX_ONCE);
|
||||
COUNT_NODE(NODE_ARGS);
|
||||
COUNT_NODE(NODE_ARGS_AUX);
|
||||
COUNT_NODE(NODE_OPT_ARG);
|
||||
|
|
6
node.c
6
node.c
|
@ -714,11 +714,6 @@ dump_node(VALUE buf, VALUE indent, int comment, NODE *node)
|
|||
ANN("format: [nd_lit]");
|
||||
ANN("example: /foo#{ bar }baz/");
|
||||
goto dlit;
|
||||
case NODE_DREGX_ONCE:
|
||||
ANN("regexp literal with interpolation and once flag");
|
||||
ANN("format: [nd_lit]");
|
||||
ANN("example: /foo#{ bar }baz/o");
|
||||
goto dlit;
|
||||
case NODE_DSYM:
|
||||
ANN("symbol literal with interpolation");
|
||||
ANN("format: [nd_lit]");
|
||||
|
@ -1111,7 +1106,6 @@ rb_gc_mark_node(NODE *obj)
|
|||
case NODE_DSTR:
|
||||
case NODE_DXSTR:
|
||||
case NODE_DREGX:
|
||||
case NODE_DREGX_ONCE:
|
||||
case NODE_ENSURE:
|
||||
case NODE_CALL:
|
||||
case NODE_DEFS:
|
||||
|
|
2
node.h
2
node.h
|
@ -150,8 +150,6 @@ enum node_type {
|
|||
#define NODE_EVSTR NODE_EVSTR
|
||||
NODE_DREGX,
|
||||
#define NODE_DREGX NODE_DREGX
|
||||
NODE_DREGX_ONCE,
|
||||
#define NODE_DREGX_ONCE NODE_DREGX_ONCE
|
||||
NODE_ARGS,
|
||||
#define NODE_ARGS NODE_ARGS
|
||||
NODE_ARGS_AUX,
|
||||
|
|
Loading…
Reference in a new issue