aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
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
commitbf99b94acf8cc4ec4a644a0ad3de8cf577a69a35 (patch)
treeab416b8e13ce65180b9f7211e4e0c612e74e70bd /parse.y
parent3c6423cb2b73ad18dbc143e1168dfab5dd40b818 (diff)
downloadruby-bf99b94acf8cc4ec4a644a0ad3de8cf577a69a35.tar.gz
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 'parse.y')
-rw-r--r--parse.y1
1 files changed, 0 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index c56db58040..e1410cd6f0 100644
--- a/parse.y
+++ b/parse.y
@@ -9934,7 +9934,6 @@ node_assign_gen(struct parser_params *parser, NODE *lhs, NODE *rhs, int column)
switch (nd_type(lhs)) {
case NODE_GASGN:
case NODE_IASGN:
- case NODE_IASGN2:
case NODE_LASGN:
case NODE_DASGN:
case NODE_DASGN_CURR: