Rename ParseModule to ParseModuleItemList
TBR=rossberg@chromium.org Review URL: https://codereview.chromium.org/952343002 Cr-Commit-Position: refs/heads/master@{#26868}
This commit is contained in:
parent
6b1bddb454
commit
fb6f68b8a8
@ -942,7 +942,7 @@ FunctionLiteral* Parser::DoParseProgram(CompilationInfo* info, Scope** scope,
|
||||
int beg_pos = scanner()->location().beg_pos;
|
||||
if (info->is_module()) {
|
||||
DCHECK(allow_harmony_modules());
|
||||
ParseModule(body, &ok);
|
||||
ParseModuleItemList(body, &ok);
|
||||
} else {
|
||||
ParseStatementList(body, Token::EOS, info->is_eval(), eval_scope, &ok);
|
||||
}
|
||||
@ -1242,7 +1242,7 @@ Statement* Parser::ParseModuleItem(bool* ok) {
|
||||
}
|
||||
|
||||
|
||||
void* Parser::ParseModule(ZoneList<Statement*>* body, bool* ok) {
|
||||
void* Parser::ParseModuleItemList(ZoneList<Statement*>* body, bool* ok) {
|
||||
// (Ecma 262 6th Edition, 15.2):
|
||||
// Module :
|
||||
// ModuleBody?
|
||||
|
@ -704,7 +704,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);
|
||||
void* ParseModule(ZoneList<Statement*>* body, bool* ok);
|
||||
void* ParseModuleItemList(ZoneList<Statement*>* body, bool* ok);
|
||||
Statement* ParseModuleItem(bool* ok);
|
||||
Literal* ParseModuleSpecifier(bool* ok);
|
||||
Statement* ParseImportDeclaration(bool* ok);
|
||||
|
Loading…
Reference in New Issue
Block a user