Index: src/parsing/parser-base.h |
diff --git a/src/parsing/parser-base.h b/src/parsing/parser-base.h |
index f00364750994ff42a7fb81274f61a39cecc8575a..3717e01a6ef70a3d3e74f7b55d26e7a832caaf6f 100644 |
--- a/src/parsing/parser-base.h |
+++ b/src/parsing/parser-base.h |
@@ -3115,6 +3115,7 @@ ParserBase<Impl>::ParseLeftHandSideExpression(bool* ok) { |
// Explicit calls to the super constructor using super() perform an |
// implicit binding assignment to the 'this' variable. |
if (is_super_call) { |
+ result = impl()->RewriteSuperCall(result); |
ExpressionT this_expr = impl()->ThisExpression(pos); |
result = |
factory()->NewAssignment(Token::INIT, this_expr, result, pos); |