Skip to content

Commit ea48993

Browse files
committed
fix #14356
1 parent d5924dd commit ea48993

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/reverseanalyzer.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,9 @@ namespace {
280280
break;
281281
if (!updateRecursive(assignTop->astOperand2()))
282282
break;
283-
tok = previousBeforeAstLeftmostLeaf(assignTop)->next();
283+
tok = assignTop;
284+
while (tok->astOperand1())
285+
tok = tok->astOperand1();
284286
continue;
285287
}
286288
if (tok->str() == ")" && !isUnevaluated(tok)) {

0 commit comments

Comments
 (0)