Index: src/parser.h |
diff --git a/src/parser.h b/src/parser.h |
index bc0b7ab51b0546257d807260331c540098d6d133..26255b28cb4b947128401a77db1fb321113d2edf 100644 |
--- a/src/parser.h |
+++ b/src/parser.h |
@@ -703,7 +703,7 @@ class Parser : public ParserBase<ParserTraits> { |
void* ParseStatementList(ZoneList<Statement*>* body, int end_token, |
bool is_eval, Scope** ad_hoc_eval_scope, bool* ok); |
Statement* ParseStatementListItem(bool* ok); |
- Statement* ParseModule(bool* ok); |
+ void* ParseModule(ZoneList<Statement*>* body, bool* ok); |
rossberg
2015/02/25 13:35:42
Nit: Can we rename this to ParseModuleItemList, fo
adamk
2015/02/25 18:55:21
Sounds good, will rename in a one of these followu
|
Statement* ParseModuleItem(bool* ok); |
Literal* ParseModuleSpecifier(bool* ok); |
Statement* ParseImportDeclaration(bool* ok); |