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:
parent
6c0f395c01
commit
5c5d894474
1 changed files with 9 additions and 3 deletions
12
node.c
12
node.c
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue