Index: src/parsing/parser.cc |
diff --git a/src/parsing/parser.cc b/src/parsing/parser.cc |
index bf71619760bd1f31e1b65d65048641ff1135c0ab..25126e1cf3295fd4b90b0efe719f10a7d54b19ab 100644 |
--- a/src/parsing/parser.cc |
+++ b/src/parsing/parser.cc |
@@ -923,7 +923,8 @@ FunctionLiteral* Parser::DoParseProgram(ParseInfo* info) { |
ZoneList<Statement*>* body = new(zone()) ZoneList<Statement*>(16, zone()); |
bool ok = true; |
int beg_pos = scanner()->location().beg_pos; |
- if (info->is_module()) { |
+ parsing_module_ = info->is_module(); |
+ if (parsing_module_) { |
ParseModuleItemList(body, &ok); |
} else { |
// Don't count the mode in the use counters--give the program a chance |
@@ -1358,7 +1359,7 @@ void* Parser::ParseExportClause(ZoneList<const AstRawString*>* export_names, |
// Keep track of the first reserved word encountered in case our |
// caller needs to report an error. |
if (!reserved_loc->IsValid() && |
- !Token::IsIdentifier(name_tok, STRICT, false)) { |
+ !Token::IsIdentifier(name_tok, STRICT, false, parsing_module_)) { |
*reserved_loc = scanner()->location(); |
} |
const AstRawString* local_name = ParseIdentifierName(CHECK_OK); |
@@ -1409,7 +1410,8 @@ ZoneList<ImportDeclaration*>* Parser::ParseNamedImports(int pos, bool* ok) { |
if (CheckContextualKeyword(CStrVector("as"))) { |
local_name = ParseIdentifierName(CHECK_OK); |
} |
- if (!Token::IsIdentifier(scanner()->current_token(), STRICT, false)) { |
+ if (!Token::IsIdentifier(scanner()->current_token(), STRICT, false, |
+ parsing_module_)) { |
*ok = false; |
ReportMessage(MessageTemplate::kUnexpectedReserved); |
return NULL; |
@@ -4621,7 +4623,7 @@ PreParser::PreParseResult Parser::ParseLazyFunctionBodyWithPreParser( |
} |
PreParser::PreParseResult result = reusable_preparser_->PreParseLazyFunction( |
language_mode(), function_state_->kind(), scope_->has_simple_parameters(), |
- logger, bookmark, use_counts_); |
+ parsing_module_, logger, bookmark, use_counts_); |
if (pre_parse_timer_ != NULL) { |
pre_parse_timer_->Stop(); |
} |