aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--parse.y7
1 files changed, 4 insertions, 3 deletions
diff --git a/parse.y b/parse.y
index c3756c52a3..6a0f5045db 100644
--- a/parse.y
+++ b/parse.y
@@ -10861,9 +10861,10 @@ new_op_assign_gen(struct parser_params *parser, NODE *lhs, ID op, NODE *rhs, con
if (lhs) {
ID vid = lhs->nd_vid;
+ YYLTYPE *lhs_location = &lhs->nd_loc;
if (op == tOROP) {
lhs->nd_value = rhs;
- asgn = NEW_OP_ASGN_OR(gettable(vid, location), lhs);
+ asgn = NEW_OP_ASGN_OR(gettable(vid, lhs_location), lhs);
asgn->nd_loc = *location;
if (is_notop_id(vid)) {
switch (id_type(vid)) {
@@ -10876,12 +10877,12 @@ new_op_assign_gen(struct parser_params *parser, NODE *lhs, ID op, NODE *rhs, con
}
else if (op == tANDOP) {
lhs->nd_value = rhs;
- asgn = NEW_OP_ASGN_AND(gettable(vid, location), lhs);
+ asgn = NEW_OP_ASGN_AND(gettable(vid, lhs_location), lhs);
asgn->nd_loc = *location;
}
else {
asgn = lhs;
- asgn->nd_value = new_call(gettable(vid, location), op, new_list(rhs, location), location);
+ asgn->nd_value = new_call(gettable(vid, lhs_location), op, new_list(rhs, &rhs->nd_loc), location);
asgn->nd_loc = *location;
}
}