Index: src/parsing/parser-base.h |
diff --git a/src/parsing/parser-base.h b/src/parsing/parser-base.h |
index 1112abcaea84d8ab0c2b80a040f3ac93bb3d09d5..2a5270ebb6cf0f7770ce97f599b1a57472b9afc5 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); |