| Index: src/parser.h
|
| diff --git a/src/parser.h b/src/parser.h
|
| index fe3a9a85225dace6f78806d52ea65acd8b8d55ca..e9987718312098175fe66a3641fa403a1781bfb3 100644
|
| --- a/src/parser.h
|
| +++ b/src/parser.h
|
| @@ -751,9 +751,12 @@ class Parser : public ParserBase<ParserTraits> {
|
| Statement* ParseStatementListItem(bool* ok);
|
| Module* ParseModule(bool* ok);
|
| Statement* ParseModuleItem(bool* ok);
|
| - Module* ParseModuleUrl(bool* ok);
|
| + Module* ParseModuleSpecifier(bool* ok);
|
| Statement* ParseImportDeclaration(bool* ok);
|
| Statement* ParseExportDeclaration(bool* ok);
|
| + Statement* ParseExportDefault(bool* ok);
|
| + void* ParseModuleDeclarationClause(ZoneList<const AstRawString*>* names,
|
| + bool* ok);
|
| Statement* ParseStatement(ZoneList<const AstRawString*>* labels, bool* ok);
|
| Statement* ParseFunctionDeclaration(ZoneList<const AstRawString*>* names,
|
| bool* ok);
|
|
|