| Index: src/parser.cc
|
| diff --git a/src/parser.cc b/src/parser.cc
|
| index ead37b0a2cf155e32b1bf590a22e3f4c48339ce9..a71f366715b081beeefdb28d518da48bdd966847 100644
|
| --- a/src/parser.cc
|
| +++ b/src/parser.cc
|
| @@ -619,6 +619,12 @@ Expression* ParserTraits::ThisExpression(
|
| return factory->NewVariableProxy(scope->receiver(), pos);
|
| }
|
|
|
| +Expression* ParserTraits::SuperReference(
|
| + Scope* scope, AstNodeFactory<AstConstructionVisitor>* factory, int pos) {
|
| + return factory->NewSuperReference(
|
| + ThisExpression(scope, factory, pos)->AsVariableProxy(),
|
| + pos);
|
| +}
|
|
|
| Literal* ParserTraits::ExpressionFromLiteral(
|
| Token::Value token, int pos,
|
|
|