| Index: src/parser.h
|
| diff --git a/src/parser.h b/src/parser.h
|
| index fd3fc4774b2f76e997cf091be9fe8c6246530558..799ec5860d55bbc89f69d0b61c0bfc4990a2fe52 100644
|
| --- a/src/parser.h
|
| +++ b/src/parser.h
|
| @@ -488,6 +488,9 @@ class ParserTraits {
|
| static Literal* EmptyLiteral() {
|
| return NULL;
|
| }
|
| + static ZoneList<Expression*>* NullExpressionList() {
|
| + return NULL;
|
| + }
|
|
|
| // Odd-ball literal creators.
|
| Literal* GetLiteralTheHole(int position,
|
| @@ -687,7 +690,6 @@ class Parser : public ParserBase<ParserTraits> {
|
| Expression* subject,
|
| Statement* body);
|
|
|
| - ZoneList<Expression*>* ParseArguments(bool* ok);
|
| FunctionLiteral* ParseFunctionLiteral(
|
| Handle<String> name,
|
| Scanner::Location function_name_location,
|
|
|