1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

node.c: fix NODE_OP_ASGN1

* node.c (dump_node): fix a typo, index and rvalue.  fix
  NODE_OP_ASGN1 operator to nd_mid.  [Fix GH-1528]

Author:    fate0 <fate0@users.noreply.github.com>

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57718 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2017-02-26 09:33:17 +00:00
parent 6c0f395c01
commit 5c5d894474

12
node.c
View file

@ -426,10 +426,16 @@ dump_node(VALUE buf, VALUE indent, int comment, NODE *node)
ANN("format: [nd_value] [ [nd_args->nd_body] ] [nd_vid]= [nd_args->nd_head]");
ANN("example: ary[1] += foo");
F_NODE(nd_recv, "receiver");
F_ID(nd_vid, "operator");
F_NODE(nd_args->nd_body, "index");
F_CUSTOM1(nd_mid, "operator") {
switch (node->nd_mid) {
case 0: A("0 (||)"); break;
case 1: A("1 (&&)"); break;
default: A_ID(node->nd_mid);
}
};
F_NODE(nd_args->nd_head, "index");
LAST_NODE;
F_NODE(nd_args->nd_head, "rvalue");
F_NODE(nd_args->nd_body, "rvalue");
break;
case NODE_OP_ASGN2: