| Index: src/parser.cc
|
| diff --git a/src/parser.cc b/src/parser.cc
|
| index 6c941daa978d3d53bdc6cfca5f1914195bc7d2f0..a49f575a74688fd9c5e070b70fb49b7ffd7ff1bb 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,
|
|
|