ruby-changes:48217
From: yui-knk <ko1@a...>
Date: Sun, 22 Oct 2017 09:17:44 +0900 (JST)
Subject: [ruby-changes:48217] yui-knk:r60332 (trunk): Remove not used node_type NODE_TO_ARY
yui-knk 2017-10-22 09:17:39 +0900 (Sun, 22 Oct 2017) New Revision: 60332 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=60332 Log: Remove not used node_type NODE_TO_ARY * ext/objspace/objspace.c (count_nodes): This node_type has not been used since r13236. * node.c (dump_node, rb_gc_mark_node): ditto * node.h (node_type, NEW_TO_ARY): ditto Modified files: trunk/ext/objspace/objspace.c trunk/node.c trunk/node.h Index: node.c =================================================================== --- node.c (revision 60331) +++ node.c (revision 60332) @@ -1035,7 +1035,6 @@ dump_node(VALUE buf, VALUE indent, int c https://github.com/ruby/ruby/blob/trunk/node.c#L1035 return; case NODE_ARGS_AUX: - case NODE_TO_ARY: case NODE_BLOCK_ARG: case NODE_BMETHOD: case NODE_LAST: @@ -1172,7 +1171,6 @@ rb_gc_mark_node(NODE *obj) https://github.com/ruby/ruby/blob/trunk/node.c#L1171 case NODE_YIELD: case NODE_COLON2: case NODE_SPLAT: - case NODE_TO_ARY: return RNODE(obj)->u1.value; case NODE_SCOPE: /* 2,3 */ Index: node.h =================================================================== --- node.h (revision 60331) +++ node.h (revision 60332) @@ -168,8 +168,6 @@ enum node_type { https://github.com/ruby/ruby/blob/trunk/node.h#L168 #define NODE_ARGSPUSH NODE_ARGSPUSH NODE_SPLAT, #define NODE_SPLAT NODE_SPLAT - NODE_TO_ARY, -#define NODE_TO_ARY NODE_TO_ARY NODE_BLOCK_ARG, #define NODE_BLOCK_ARG NODE_BLOCK_ARG NODE_BLOCK_PASS, @@ -426,7 +424,6 @@ typedef struct RNode { https://github.com/ruby/ruby/blob/trunk/node.h#L424 #define NEW_ARGSCAT(a,b) NEW_NODE(NODE_ARGSCAT,a,b,0) #define NEW_ARGSPUSH(a,b) NEW_NODE(NODE_ARGSPUSH,a,b,0) #define NEW_SPLAT(a) NEW_NODE(NODE_SPLAT,a,0,0) -#define NEW_TO_ARY(a) NEW_NODE(NODE_TO_ARY,a,0,0) #define NEW_BLOCK_ARG(v) NEW_NODE(NODE_BLOCK_ARG,v,0,local_cnt(v)) #define NEW_BLOCK_PASS(b) NEW_NODE(NODE_BLOCK_PASS,0,b,0) #define NEW_ALIAS(n,o) NEW_NODE(NODE_ALIAS,n,o,0) Index: ext/objspace/objspace.c =================================================================== --- ext/objspace/objspace.c (revision 60331) +++ ext/objspace/objspace.c (revision 60332) @@ -442,7 +442,6 @@ count_nodes(int argc, VALUE *argv, VALUE https://github.com/ruby/ruby/blob/trunk/ext/objspace/objspace.c#L442 COUNT_NODE(NODE_ARGSCAT); COUNT_NODE(NODE_ARGSPUSH); COUNT_NODE(NODE_SPLAT); - COUNT_NODE(NODE_TO_ARY); COUNT_NODE(NODE_BLOCK_ARG); COUNT_NODE(NODE_BLOCK_PASS); COUNT_NODE(NODE_DEFN); -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/