Chromium Code Reviews| Index: src/parsing/parser.h |
| diff --git a/src/parsing/parser.h b/src/parsing/parser.h |
| index fcf90bab22954321689e149331a0bbc651b1dc95..3f2c488f09879257d89c09caece5a0d554413f06 100644 |
| --- a/src/parsing/parser.h |
| +++ b/src/parsing/parser.h |
| @@ -782,18 +782,15 @@ class Parser : public ParserBase<ParserTraits> { |
| bool* ok); |
| Statement* ParseFunctionDeclaration(bool* ok); |
| Statement* ParseHoistableDeclaration(ZoneList<const AstRawString*>* names, |
| - bool* ok); |
| + bool default_export, bool* ok); |
| Statement* ParseHoistableDeclaration(int pos, ParseFunctionFlags flags, |
| ZoneList<const AstRawString*>* names, |
| - bool* ok); |
| + bool default_export, bool* ok); |
| Statement* ParseAsyncFunctionDeclaration(ZoneList<const AstRawString*>* names, |
| - bool* ok); |
| + bool default_export, bool* ok); |
| Expression* ParseAsyncFunctionExpression(bool* ok); |
| - Statement* ParseFunctionDeclaration(int pos, bool is_generator, |
| - ZoneList<const AstRawString*>* names, |
|
neis
2016/06/30 13:49:04
This was unused.
|
| - bool* ok); |
| Statement* ParseClassDeclaration(ZoneList<const AstRawString*>* names, |
| - bool* ok); |
| + bool default_export, bool* ok); |
| Statement* ParseNativeDeclaration(bool* ok); |
| Block* ParseBlock(ZoneList<const AstRawString*>* labels, bool* ok); |
| Block* ParseBlock(ZoneList<const AstRawString*>* labels, |