summaryrefslogtreecommitdiff
path: root/node.c
diff options
context:
space:
mode:
authoryui-knk <yui-knk@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-21 15:56:03 +0000
committeryui-knk <yui-knk@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-21 15:56:03 +0000
commit92746378ab84c3e935392097354e6e74d4abec82 (patch)
treeab416b8e13ce65180b9f7211e4e0c612e74e70bd /node.c
parentdafb230c0b7e26b15ca74ce1b99f05ce6f42027e (diff)
Remove not used node_type NODE_IASGN2
* compile.c (compile_massign_opt, iseq_compile_each0): This node_type has not been used since r11813. * ext/objspace/objspace.c (count_nodes): ditto * node.c (dump_node, rb_gc_mark_node): ditto * node.h (node_type, NEW_IASGN2): ditto * parse.y (node_assign_gen): ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60302 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'node.c')
-rw-r--r--node.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/node.c b/node.c
index c0ca3a8186..82bb596d70 100644
--- a/node.c
+++ b/node.c
@@ -1034,7 +1034,6 @@ dump_node(VALUE buf, VALUE indent, int comment, NODE *node)
F_NODE(nd_body, "body");
return;
- case NODE_IASGN2:
case NODE_CVDECL:
case NODE_ARGS_AUX:
case NODE_TO_ARY:
@@ -1154,7 +1153,6 @@ rb_gc_mark_node(NODE *obj)
case NODE_DASGN:
case NODE_DASGN_CURR:
case NODE_IASGN:
- case NODE_IASGN2:
case NODE_CVASGN:
case NODE_COLON3:
case NODE_OPT_N: