Skip to content

Commit

Permalink
Fix one of assignment optimizer bug
Browse files Browse the repository at this point in the history
Signed-off-by: Seonghyun Kim <[email protected]>
  • Loading branch information
ksh8281 authored and bbrto21 committed Oct 21, 2024
1 parent cf0ef12 commit 2f3ba80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/parser/ast/ObjectExpressionNode.h
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ class ObjectExpressionNode : public ExpressionNode {
if (!(p->key()->isIdentifier() && !p->computed())) {
p->key()->iterateChildrenIdentifier(fn);
}
p->value()->iterateChildrenIdentifier(fn);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion test/vendortest

0 comments on commit 2f3ba80

Please sign in to comment.