summaryrefslogtreecommitdiff
path: root/node_dump.c
diff options
context:
space:
mode:
authorydah <[email protected]>2024-09-27 02:32:27 +0900
committerYuichiro Kaneko <[email protected]>2024-09-28 20:53:09 +0900
commit8f678d69895d8b0562a52925a1840b698e021f56 ()
tree2bd7e499963b8403646b9940b1f0ff509c7bb96c /node_dump.c
parent027ef60500c43fecbd4784cf24a99f6955606567 (diff)
Implement OP_ASGN2 NODE locations
Notes: Merged: https://.com/ruby/ruby/pull/11702
-rw-r--r--node_dump.c5
1 files changed, 4 insertions, 1 deletions
@@ -560,8 +560,11 @@ dump_node(VALUE buf, VALUE indent, int comment, const NODE * node)
A_ID(RNODE_OP_ASGN2(node)->nd_vid);
}
F_ID(nd_mid, RNODE_OP_ASGN2, "operator");
- LAST_NODE;
F_NODE(nd_value, RNODE_OP_ASGN2, "rvalue");
return;
case NODE_OP_ASGN_AND: