| // Copyright 2012 the V8 project authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "src/parsing/parser.h" |
| |
| #include "src/api.h" |
| #include "src/ast/ast.h" |
| #include "src/ast/ast-expression-rewriter.h" |
| #include "src/ast/ast-expression-visitor.h" |
| #include "src/ast/ast-literal-reindexer.h" |
| #include "src/ast/scopeinfo.h" |
| #include "src/bailout-reason.h" |
| #include "src/base/platform/platform.h" |
| #include "src/bootstrapper.h" |
| #include "src/char-predicates-inl.h" |
| #include "src/codegen.h" |
| #include "src/compiler.h" |
| #include "src/messages.h" |
| #include "src/parsing/parameter-initializer-rewriter.h" |
| #include "src/parsing/parser-base.h" |
| #include "src/parsing/rewriter.h" |
| #include "src/parsing/scanner-character-streams.h" |
| #include "src/runtime/runtime.h" |
| #include "src/string-stream.h" |
| #include "src/tracing/trace-event.h" |
| |
| namespace v8 { |
| namespace internal { |
| |
| ScriptData::ScriptData(const byte* data, int length) |
| : owns_data_(false), rejected_(false), data_(data), length_(length) { |
| if (!IsAligned(reinterpret_cast<intptr_t>(data), kPointerAlignment)) { |
| byte* copy = NewArray<byte>(length); |
| DCHECK(IsAligned(reinterpret_cast<intptr_t>(copy), kPointerAlignment)); |
| CopyBytes(copy, data, length); |
| data_ = copy; |
| AcquireDataOwnership(); |
| } |
| } |
| |
| ParseInfo::ParseInfo(Zone* zone) |
| : zone_(zone), |
| flags_(0), |
| source_stream_(nullptr), |
| source_stream_encoding_(ScriptCompiler::StreamedSource::ONE_BYTE), |
| extension_(nullptr), |
| compile_options_(ScriptCompiler::kNoCompileOptions), |
| script_scope_(nullptr), |
| unicode_cache_(nullptr), |
| stack_limit_(0), |
| hash_seed_(0), |
| isolate_(nullptr), |
| cached_data_(nullptr), |
| ast_value_factory_(nullptr), |
| literal_(nullptr), |
| scope_(nullptr) {} |
| |
| ParseInfo::ParseInfo(Zone* zone, Handle<JSFunction> function) |
| : ParseInfo(zone, Handle<SharedFunctionInfo>(function->shared())) { |
| set_context(Handle<Context>(function->context())); |
| } |
| |
| |
| ParseInfo::ParseInfo(Zone* zone, Handle<SharedFunctionInfo> shared) |
| : ParseInfo(zone) { |
| isolate_ = shared->GetIsolate(); |
| |
| set_lazy(); |
| set_hash_seed(isolate_->heap()->HashSeed()); |
| set_stack_limit(isolate_->stack_guard()->real_climit()); |
| set_unicode_cache(isolate_->unicode_cache()); |
| set_language_mode(shared->language_mode()); |
| set_shared_info(shared); |
| |
| Handle<Script> script(Script::cast(shared->script())); |
| set_script(script); |
| if (!script.is_null() && script->type() == Script::TYPE_NATIVE) { |
| set_native(); |
| } |
| } |
| |
| |
| ParseInfo::ParseInfo(Zone* zone, Handle<Script> script) : ParseInfo(zone) { |
| isolate_ = script->GetIsolate(); |
| |
| set_hash_seed(isolate_->heap()->HashSeed()); |
| set_stack_limit(isolate_->stack_guard()->real_climit()); |
| set_unicode_cache(isolate_->unicode_cache()); |
| set_script(script); |
| |
| if (script->type() == Script::TYPE_NATIVE) { |
| set_native(); |
| } |
| } |
| |
| |
| FunctionEntry ParseData::GetFunctionEntry(int start) { |
| // The current pre-data entry must be a FunctionEntry with the given |
| // start position. |
| if ((function_index_ + FunctionEntry::kSize <= Length()) && |
| (static_cast<int>(Data()[function_index_]) == start)) { |
| int index = function_index_; |
| function_index_ += FunctionEntry::kSize; |
| Vector<unsigned> subvector(&(Data()[index]), FunctionEntry::kSize); |
| return FunctionEntry(subvector); |
| } |
| return FunctionEntry(); |
| } |
| |
| |
| int ParseData::FunctionCount() { |
| int functions_size = FunctionsSize(); |
| if (functions_size < 0) return 0; |
| if (functions_size % FunctionEntry::kSize != 0) return 0; |
| return functions_size / FunctionEntry::kSize; |
| } |
| |
| |
| bool ParseData::IsSane() { |
| if (!IsAligned(script_data_->length(), sizeof(unsigned))) return false; |
| // Check that the header data is valid and doesn't specify |
| // point to positions outside the store. |
| int data_length = Length(); |
| if (data_length < PreparseDataConstants::kHeaderSize) return false; |
| if (Magic() != PreparseDataConstants::kMagicNumber) return false; |
| if (Version() != PreparseDataConstants::kCurrentVersion) return false; |
| if (HasError()) return false; |
| // Check that the space allocated for function entries is sane. |
| int functions_size = FunctionsSize(); |
| if (functions_size < 0) return false; |
| if (functions_size % FunctionEntry::kSize != 0) return false; |
| // Check that the total size has room for header and function entries. |
| int minimum_size = |
| PreparseDataConstants::kHeaderSize + functions_size; |
| if (data_length < minimum_size) return false; |
| return true; |
| } |
| |
| |
| void ParseData::Initialize() { |
| // Prepares state for use. |
| int data_length = Length(); |
| if (data_length >= PreparseDataConstants::kHeaderSize) { |
| function_index_ = PreparseDataConstants::kHeaderSize; |
| } |
| } |
| |
| |
| bool ParseData::HasError() { |
| return Data()[PreparseDataConstants::kHasErrorOffset]; |
| } |
| |
| |
| unsigned ParseData::Magic() { |
| return Data()[PreparseDataConstants::kMagicOffset]; |
| } |
| |
| |
| unsigned ParseData::Version() { |
| return Data()[PreparseDataConstants::kVersionOffset]; |
| } |
| |
| |
| int ParseData::FunctionsSize() { |
| return static_cast<int>(Data()[PreparseDataConstants::kFunctionsSizeOffset]); |
| } |
| |
| |
| void Parser::SetCachedData(ParseInfo* info) { |
| if (compile_options_ == ScriptCompiler::kNoCompileOptions) { |
| cached_parse_data_ = NULL; |
| } else { |
| DCHECK(info->cached_data() != NULL); |
| if (compile_options_ == ScriptCompiler::kConsumeParserCache) { |
| cached_parse_data_ = ParseData::FromCachedData(*info->cached_data()); |
| } |
| } |
| } |
| |
| FunctionLiteral* Parser::DefaultConstructor(const AstRawString* name, |
| bool call_super, Scope* scope, |
| int pos, int end_pos, |
| LanguageMode language_mode) { |
| int materialized_literal_count = -1; |
| int expected_property_count = -1; |
| int parameter_count = 0; |
| if (name == nullptr) name = ast_value_factory()->empty_string(); |
| |
| FunctionKind kind = call_super ? FunctionKind::kDefaultSubclassConstructor |
| : FunctionKind::kDefaultBaseConstructor; |
| Scope* function_scope = NewScope(scope, FUNCTION_SCOPE, kind); |
| SetLanguageMode(function_scope, |
| static_cast<LanguageMode>(language_mode | STRICT)); |
| // Set start and end position to the same value |
| function_scope->set_start_position(pos); |
| function_scope->set_end_position(pos); |
| ZoneList<Statement*>* body = NULL; |
| |
| { |
| AstNodeFactory function_factory(ast_value_factory()); |
| FunctionState function_state(&function_state_, &scope_, function_scope, |
| kind, &function_factory); |
| |
| body = new (zone()) ZoneList<Statement*>(call_super ? 2 : 1, zone()); |
| if (call_super) { |
| // $super_constructor = %_GetSuperConstructor(<this-function>) |
| // %reflect_construct($super_constructor, arguments, new.target) |
| ZoneList<Expression*>* args = |
| new (zone()) ZoneList<Expression*>(2, zone()); |
| VariableProxy* this_function_proxy = scope_->NewUnresolved( |
| factory(), ast_value_factory()->this_function_string(), |
| Variable::NORMAL, pos); |
| ZoneList<Expression*>* tmp = |
| new (zone()) ZoneList<Expression*>(1, zone()); |
| tmp->Add(this_function_proxy, zone()); |
| Expression* super_constructor = factory()->NewCallRuntime( |
| Runtime::kInlineGetSuperConstructor, tmp, pos); |
| args->Add(super_constructor, zone()); |
| VariableProxy* arguments_proxy = scope_->NewUnresolved( |
| factory(), ast_value_factory()->arguments_string(), Variable::NORMAL, |
| pos); |
| args->Add(arguments_proxy, zone()); |
| VariableProxy* new_target_proxy = scope_->NewUnresolved( |
| factory(), ast_value_factory()->new_target_string(), Variable::NORMAL, |
| pos); |
| args->Add(new_target_proxy, zone()); |
| CallRuntime* call = factory()->NewCallRuntime( |
| Context::REFLECT_CONSTRUCT_INDEX, args, pos); |
| body->Add(factory()->NewReturnStatement(call, pos), zone()); |
| } |
| |
| materialized_literal_count = function_state.materialized_literal_count(); |
| expected_property_count = function_state.expected_property_count(); |
| } |
| |
| FunctionLiteral* function_literal = factory()->NewFunctionLiteral( |
| name, function_scope, body, materialized_literal_count, |
| expected_property_count, parameter_count, |
| FunctionLiteral::kNoDuplicateParameters, |
| FunctionLiteral::kAnonymousExpression, |
| FunctionLiteral::kShouldLazyCompile, kind, pos); |
| |
| return function_literal; |
| } |
| |
| |
| // ---------------------------------------------------------------------------- |
| // Target is a support class to facilitate manipulation of the |
| // Parser's target_stack_ (the stack of potential 'break' and |
| // 'continue' statement targets). Upon construction, a new target is |
| // added; it is removed upon destruction. |
| |
| class Target BASE_EMBEDDED { |
| public: |
| Target(Target** variable, BreakableStatement* statement) |
| : variable_(variable), statement_(statement), previous_(*variable) { |
| *variable = this; |
| } |
| |
| ~Target() { |
| *variable_ = previous_; |
| } |
| |
| Target* previous() { return previous_; } |
| BreakableStatement* statement() { return statement_; } |
| |
| private: |
| Target** variable_; |
| BreakableStatement* statement_; |
| Target* previous_; |
| }; |
| |
| |
| class TargetScope BASE_EMBEDDED { |
| public: |
| explicit TargetScope(Target** variable) |
| : variable_(variable), previous_(*variable) { |
| *variable = NULL; |
| } |
| |
| ~TargetScope() { |
| *variable_ = previous_; |
| } |
| |
| private: |
| Target** variable_; |
| Target* previous_; |
| }; |
| |
| |
| // ---------------------------------------------------------------------------- |
| // The CHECK_OK macro is a convenient macro to enforce error |
| // handling for functions that may fail (by returning !*ok). |
| // |
| // CAUTION: This macro appends extra statements after a call, |
| // thus it must never be used where only a single statement |
| // is correct (e.g. an if statement branch w/o braces)! |
| |
| #define CHECK_OK ok); \ |
| if (!*ok) return NULL; \ |
| ((void)0 |
| #define DUMMY ) // to make indentation work |
| #undef DUMMY |
| |
| #define CHECK_FAILED /**/); \ |
| if (failed_) return NULL; \ |
| ((void)0 |
| #define DUMMY ) // to make indentation work |
| #undef DUMMY |
| |
| // ---------------------------------------------------------------------------- |
| // Implementation of Parser |
| |
| bool ParserTraits::IsEval(const AstRawString* identifier) const { |
| return identifier == parser_->ast_value_factory()->eval_string(); |
| } |
| |
| |
| bool ParserTraits::IsArguments(const AstRawString* identifier) const { |
| return identifier == parser_->ast_value_factory()->arguments_string(); |
| } |
| |
| |
| bool ParserTraits::IsEvalOrArguments(const AstRawString* identifier) const { |
| return IsEval(identifier) || IsArguments(identifier); |
| } |
| |
| bool ParserTraits::IsUndefined(const AstRawString* identifier) const { |
| return identifier == parser_->ast_value_factory()->undefined_string(); |
| } |
| |
| bool ParserTraits::IsAwait(const AstRawString* identifier) const { |
| return identifier == parser_->ast_value_factory()->await_string(); |
| } |
| |
| bool ParserTraits::IsPrototype(const AstRawString* identifier) const { |
| return identifier == parser_->ast_value_factory()->prototype_string(); |
| } |
| |
| |
| bool ParserTraits::IsConstructor(const AstRawString* identifier) const { |
| return identifier == parser_->ast_value_factory()->constructor_string(); |
| } |
| |
| |
| bool ParserTraits::IsThisProperty(Expression* expression) { |
| DCHECK(expression != NULL); |
| Property* property = expression->AsProperty(); |
| return property != NULL && property->obj()->IsVariableProxy() && |
| property->obj()->AsVariableProxy()->is_this(); |
| } |
| |
| |
| bool ParserTraits::IsIdentifier(Expression* expression) { |
| VariableProxy* operand = expression->AsVariableProxy(); |
| return operand != NULL && !operand->is_this(); |
| } |
| |
| |
| void ParserTraits::PushPropertyName(FuncNameInferrer* fni, |
| Expression* expression) { |
| if (expression->IsPropertyName()) { |
| fni->PushLiteralName(expression->AsLiteral()->AsRawPropertyName()); |
| } else { |
| fni->PushLiteralName( |
| parser_->ast_value_factory()->anonymous_function_string()); |
| } |
| } |
| |
| |
| void ParserTraits::CheckAssigningFunctionLiteralToProperty(Expression* left, |
| Expression* right) { |
| DCHECK(left != NULL); |
| if (left->IsProperty() && right->IsFunctionLiteral()) { |
| right->AsFunctionLiteral()->set_pretenure(); |
| } |
| } |
| |
| |
| Expression* ParserTraits::MarkExpressionAsAssigned(Expression* expression) { |
| VariableProxy* proxy = |
| expression != NULL ? expression->AsVariableProxy() : NULL; |
| if (proxy != NULL) proxy->set_is_assigned(); |
| return expression; |
| } |
| |
| |
| bool ParserTraits::ShortcutNumericLiteralBinaryExpression( |
| Expression** x, Expression* y, Token::Value op, int pos, |
| AstNodeFactory* factory) { |
| if ((*x)->AsLiteral() && (*x)->AsLiteral()->raw_value()->IsNumber() && |
| y->AsLiteral() && y->AsLiteral()->raw_value()->IsNumber()) { |
| double x_val = (*x)->AsLiteral()->raw_value()->AsNumber(); |
| double y_val = y->AsLiteral()->raw_value()->AsNumber(); |
| bool x_has_dot = (*x)->AsLiteral()->raw_value()->ContainsDot(); |
| bool y_has_dot = y->AsLiteral()->raw_value()->ContainsDot(); |
| bool has_dot = x_has_dot || y_has_dot; |
| switch (op) { |
| case Token::ADD: |
| *x = factory->NewNumberLiteral(x_val + y_val, pos, has_dot); |
| return true; |
| case Token::SUB: |
| *x = factory->NewNumberLiteral(x_val - y_val, pos, has_dot); |
| return true; |
| case Token::MUL: |
| *x = factory->NewNumberLiteral(x_val * y_val, pos, has_dot); |
| return true; |
| case Token::DIV: |
| *x = factory->NewNumberLiteral(x_val / y_val, pos, has_dot); |
| return true; |
| case Token::BIT_OR: { |
| int value = DoubleToInt32(x_val) | DoubleToInt32(y_val); |
| *x = factory->NewNumberLiteral(value, pos, has_dot); |
| return true; |
| } |
| case Token::BIT_AND: { |
| int value = DoubleToInt32(x_val) & DoubleToInt32(y_val); |
| *x = factory->NewNumberLiteral(value, pos, has_dot); |
| return true; |
| } |
| case Token::BIT_XOR: { |
| int value = DoubleToInt32(x_val) ^ DoubleToInt32(y_val); |
| *x = factory->NewNumberLiteral(value, pos, has_dot); |
| return true; |
| } |
| case Token::SHL: { |
| int value = DoubleToInt32(x_val) << (DoubleToInt32(y_val) & 0x1f); |
| *x = factory->NewNumberLiteral(value, pos, has_dot); |
| return true; |
| } |
| case Token::SHR: { |
| uint32_t shift = DoubleToInt32(y_val) & 0x1f; |
| uint32_t value = DoubleToUint32(x_val) >> shift; |
| *x = factory->NewNumberLiteral(value, pos, has_dot); |
| return true; |
| } |
| case Token::SAR: { |
| uint32_t shift = DoubleToInt32(y_val) & 0x1f; |
| int value = ArithmeticShiftRight(DoubleToInt32(x_val), shift); |
| *x = factory->NewNumberLiteral(value, pos, has_dot); |
| return true; |
| } |
| case Token::EXP: { |
| double value = Pow(x_val, y_val); |
| int int_value = static_cast<int>(value); |
| *x = factory->NewNumberLiteral( |
| int_value == value && value != -0.0 ? int_value : value, pos, |
| has_dot); |
| return true; |
| } |
| default: |
| break; |
| } |
| } |
| return false; |
| } |
| |
| |
| Expression* ParserTraits::BuildUnaryExpression(Expression* expression, |
| Token::Value op, int pos, |
| AstNodeFactory* factory) { |
| DCHECK(expression != NULL); |
| if (expression->IsLiteral()) { |
| const AstValue* literal = expression->AsLiteral()->raw_value(); |
| if (op == Token::NOT) { |
| // Convert the literal to a boolean condition and negate it. |
| bool condition = literal->BooleanValue(); |
| return factory->NewBooleanLiteral(!condition, pos); |
| } else if (literal->IsNumber()) { |
| // Compute some expressions involving only number literals. |
| double value = literal->AsNumber(); |
| bool has_dot = literal->ContainsDot(); |
| switch (op) { |
| case Token::ADD: |
| return expression; |
| case Token::SUB: |
| return factory->NewNumberLiteral(-value, pos, has_dot); |
| case Token::BIT_NOT: |
| return factory->NewNumberLiteral(~DoubleToInt32(value), pos, has_dot); |
| default: |
| break; |
| } |
| } |
| } |
| // Desugar '+foo' => 'foo*1' |
| if (op == Token::ADD) { |
| return factory->NewBinaryOperation( |
| Token::MUL, expression, factory->NewNumberLiteral(1, pos, true), pos); |
| } |
| // The same idea for '-foo' => 'foo*(-1)'. |
| if (op == Token::SUB) { |
| return factory->NewBinaryOperation( |
| Token::MUL, expression, factory->NewNumberLiteral(-1, pos), pos); |
| } |
| // ...and one more time for '~foo' => 'foo^(~0)'. |
| if (op == Token::BIT_NOT) { |
| return factory->NewBinaryOperation( |
| Token::BIT_XOR, expression, factory->NewNumberLiteral(~0, pos), pos); |
| } |
| return factory->NewUnaryOperation(op, expression, pos); |
| } |
| |
| Expression* ParserTraits::BuildIteratorResult(Expression* value, bool done) { |
| int pos = RelocInfo::kNoPosition; |
| AstNodeFactory* factory = parser_->factory(); |
| Zone* zone = parser_->zone(); |
| |
| if (value == nullptr) value = factory->NewUndefinedLiteral(pos); |
| |
| auto args = new (zone) ZoneList<Expression*>(2, zone); |
| args->Add(value, zone); |
| args->Add(factory->NewBooleanLiteral(done, pos), zone); |
| |
| return factory->NewCallRuntime(Runtime::kInlineCreateIterResultObject, args, |
| pos); |
| } |
| |
| Expression* ParserTraits::NewThrowReferenceError( |
| MessageTemplate::Template message, int pos) { |
| return NewThrowError(Runtime::kNewReferenceError, message, |
| parser_->ast_value_factory()->empty_string(), pos); |
| } |
| |
| |
| Expression* ParserTraits::NewThrowSyntaxError(MessageTemplate::Template message, |
| const AstRawString* arg, |
| int pos) { |
| return NewThrowError(Runtime::kNewSyntaxError, message, arg, pos); |
| } |
| |
| |
| Expression* ParserTraits::NewThrowTypeError(MessageTemplate::Template message, |
| const AstRawString* arg, int pos) { |
| return NewThrowError(Runtime::kNewTypeError, message, arg, pos); |
| } |
| |
| |
| Expression* ParserTraits::NewThrowError(Runtime::FunctionId id, |
| MessageTemplate::Template message, |
| const AstRawString* arg, int pos) { |
| Zone* zone = parser_->zone(); |
| ZoneList<Expression*>* args = new (zone) ZoneList<Expression*>(2, zone); |
| args->Add(parser_->factory()->NewSmiLiteral(message, pos), zone); |
| args->Add(parser_->factory()->NewStringLiteral(arg, pos), zone); |
| CallRuntime* call_constructor = |
| parser_->factory()->NewCallRuntime(id, args, pos); |
| return parser_->factory()->NewThrow(call_constructor, pos); |
| } |
| |
| |
| void ParserTraits::ReportMessageAt(Scanner::Location source_location, |
| MessageTemplate::Template message, |
| const char* arg, ParseErrorType error_type) { |
| if (parser_->stack_overflow()) { |
| // Suppress the error message (syntax error or such) in the presence of a |
| // stack overflow. The isolate allows only one pending exception at at time |
| // and we want to report the stack overflow later. |
| return; |
| } |
| parser_->pending_error_handler_.ReportMessageAt(source_location.beg_pos, |
| source_location.end_pos, |
| message, arg, error_type); |
| } |
| |
| |
| void ParserTraits::ReportMessage(MessageTemplate::Template message, |
| const char* arg, ParseErrorType error_type) { |
| Scanner::Location source_location = parser_->scanner()->location(); |
| ReportMessageAt(source_location, message, arg, error_type); |
| } |
| |
| |
| void ParserTraits::ReportMessage(MessageTemplate::Template message, |
| const AstRawString* arg, |
| ParseErrorType error_type) { |
| Scanner::Location source_location = parser_->scanner()->location(); |
| ReportMessageAt(source_location, message, arg, error_type); |
| } |
| |
| |
| void ParserTraits::ReportMessageAt(Scanner::Location source_location, |
| MessageTemplate::Template message, |
| const AstRawString* arg, |
| ParseErrorType error_type) { |
| if (parser_->stack_overflow()) { |
| // Suppress the error message (syntax error or such) in the presence of a |
| // stack overflow. The isolate allows only one pending exception at at time |
| // and we want to report the stack overflow later. |
| return; |
| } |
| parser_->pending_error_handler_.ReportMessageAt(source_location.beg_pos, |
| source_location.end_pos, |
| message, arg, error_type); |
| } |
| |
| |
| const AstRawString* ParserTraits::GetSymbol(Scanner* scanner) { |
| const AstRawString* result = |
| parser_->scanner()->CurrentSymbol(parser_->ast_value_factory()); |
| DCHECK(result != NULL); |
| return result; |
| } |
| |
| |
| const AstRawString* ParserTraits::GetNumberAsSymbol(Scanner* scanner) { |
| double double_value = parser_->scanner()->DoubleValue(); |
| char array[100]; |
| const char* string = DoubleToCString(double_value, ArrayVector(array)); |
| return parser_->ast_value_factory()->GetOneByteString(string); |
| } |
| |
| |
| const AstRawString* ParserTraits::GetNextSymbol(Scanner* scanner) { |
| return parser_->scanner()->NextSymbol(parser_->ast_value_factory()); |
| } |
| |
| |
| Expression* ParserTraits::ThisExpression(Scope* scope, AstNodeFactory* factory, |
| int pos) { |
| return scope->NewUnresolved(factory, |
| parser_->ast_value_factory()->this_string(), |
| Variable::THIS, pos, pos + 4); |
| } |
| |
| |
| Expression* ParserTraits::SuperPropertyReference(Scope* scope, |
| AstNodeFactory* factory, |
| int pos) { |
| // this_function[home_object_symbol] |
| VariableProxy* this_function_proxy = scope->NewUnresolved( |
| factory, parser_->ast_value_factory()->this_function_string(), |
| Variable::NORMAL, pos); |
| Expression* home_object_symbol_literal = |
| factory->NewSymbolLiteral("home_object_symbol", RelocInfo::kNoPosition); |
| Expression* home_object = factory->NewProperty( |
| this_function_proxy, home_object_symbol_literal, pos); |
| return factory->NewSuperPropertyReference( |
| ThisExpression(scope, factory, pos)->AsVariableProxy(), home_object, pos); |
| } |
| |
| |
| Expression* ParserTraits::SuperCallReference(Scope* scope, |
| AstNodeFactory* factory, int pos) { |
| VariableProxy* new_target_proxy = scope->NewUnresolved( |
| factory, parser_->ast_value_factory()->new_target_string(), |
| Variable::NORMAL, pos); |
| VariableProxy* this_function_proxy = scope->NewUnresolved( |
| factory, parser_->ast_value_factory()->this_function_string(), |
| Variable::NORMAL, pos); |
| return factory->NewSuperCallReference( |
| ThisExpression(scope, factory, pos)->AsVariableProxy(), new_target_proxy, |
| this_function_proxy, pos); |
| } |
| |
| |
| Expression* ParserTraits::NewTargetExpression(Scope* scope, |
| AstNodeFactory* factory, |
| int pos) { |
| static const int kNewTargetStringLength = 10; |
| auto proxy = scope->NewUnresolved( |
| factory, parser_->ast_value_factory()->new_target_string(), |
| Variable::NORMAL, pos, pos + kNewTargetStringLength); |
| proxy->set_is_new_target(); |
| return proxy; |
| } |
| |
| |
| Expression* ParserTraits::FunctionSentExpression(Scope* scope, |
| AstNodeFactory* factory, |
| int pos) { |
| // We desugar function.sent into %GeneratorGetInput(generator). |
| Zone* zone = parser_->zone(); |
| ZoneList<Expression*>* args = new (zone) ZoneList<Expression*>(1, zone); |
| VariableProxy* generator = factory->NewVariableProxy( |
| parser_->function_state_->generator_object_variable()); |
| args->Add(generator, zone); |
| return factory->NewCallRuntime(Runtime::kGeneratorGetInput, args, pos); |
| } |
| |
| |
| Literal* ParserTraits::ExpressionFromLiteral(Token::Value token, int pos, |
| Scanner* scanner, |
| AstNodeFactory* factory) { |
| switch (token) { |
| case Token::NULL_LITERAL: |
| return factory->NewNullLiteral(pos); |
| case Token::TRUE_LITERAL: |
| return factory->NewBooleanLiteral(true, pos); |
| case Token::FALSE_LITERAL: |
| return factory->NewBooleanLiteral(false, pos); |
| case Token::SMI: { |
| int value = scanner->smi_value(); |
| return factory->NewSmiLiteral(value, pos); |
| } |
| case Token::NUMBER: { |
| bool has_dot = scanner->ContainsDot(); |
| double value = scanner->DoubleValue(); |
| return factory->NewNumberLiteral(value, pos, has_dot); |
| } |
| default: |
| DCHECK(false); |
| } |
| return NULL; |
| } |
| |
| |
| Expression* ParserTraits::ExpressionFromIdentifier(const AstRawString* name, |
| int start_position, |
| int end_position, |
| Scope* scope, |
| AstNodeFactory* factory) { |
| if (parser_->fni_ != NULL) parser_->fni_->PushVariableName(name); |
| return scope->NewUnresolved(factory, name, Variable::NORMAL, start_position, |
| end_position); |
| } |
| |
| |
| Expression* ParserTraits::ExpressionFromString(int pos, Scanner* scanner, |
| AstNodeFactory* factory) { |
| const AstRawString* symbol = GetSymbol(scanner); |
| if (parser_->fni_ != NULL) parser_->fni_->PushLiteralName(symbol); |
| return factory->NewStringLiteral(symbol, pos); |
| } |
| |
| |
| Expression* ParserTraits::GetIterator(Expression* iterable, |
| AstNodeFactory* factory, int pos) { |
| Expression* iterator_symbol_literal = |
| factory->NewSymbolLiteral("iterator_symbol", RelocInfo::kNoPosition); |
| Expression* prop = |
| factory->NewProperty(iterable, iterator_symbol_literal, pos); |
| Zone* zone = parser_->zone(); |
| ZoneList<Expression*>* args = new (zone) ZoneList<Expression*>(0, zone); |
| return factory->NewCall(prop, args, pos); |
| } |
| |
| |
| Literal* ParserTraits::GetLiteralTheHole(int position, |
| AstNodeFactory* factory) { |
| return factory->NewTheHoleLiteral(RelocInfo::kNoPosition); |
| } |
| |
| |
| Expression* ParserTraits::ParseV8Intrinsic(bool* ok) { |
| return parser_->ParseV8Intrinsic(ok); |
| } |
| |
| |
| FunctionLiteral* ParserTraits::ParseFunctionLiteral( |
| const AstRawString* name, Scanner::Location function_name_location, |
| FunctionNameValidity function_name_validity, FunctionKind kind, |
| int function_token_position, FunctionLiteral::FunctionType type, |
| LanguageMode language_mode, bool* ok) { |
| return parser_->ParseFunctionLiteral( |
| name, function_name_location, function_name_validity, kind, |
| function_token_position, type, language_mode, ok); |
| } |
| |
| ClassLiteral* ParserTraits::ParseClassLiteral( |
| Type::ExpressionClassifier* classifier, const AstRawString* name, |
| Scanner::Location class_name_location, bool name_is_strict_reserved, |
| int pos, bool* ok) { |
| return parser_->ParseClassLiteral(classifier, name, class_name_location, |
| name_is_strict_reserved, pos, ok); |
| } |
| |
| void ParserTraits::MarkTailPosition(Expression* expression) { |
| expression->MarkTail(); |
| } |
| |
| void ParserTraits::MarkCollectedTailCallExpressions() { |
| parser_->MarkCollectedTailCallExpressions(); |
| } |
| |
| Parser::Parser(ParseInfo* info) |
| : ParserBase<ParserTraits>(info->zone(), &scanner_, info->stack_limit(), |
| info->extension(), info->ast_value_factory(), |
| NULL, this), |
| scanner_(info->unicode_cache()), |
| reusable_preparser_(NULL), |
| original_scope_(NULL), |
| target_stack_(NULL), |
| compile_options_(info->compile_options()), |
| cached_parse_data_(NULL), |
| total_preparse_skipped_(0), |
| pre_parse_timer_(NULL), |
| parsing_on_main_thread_(true) { |
| // Even though we were passed ParseInfo, we should not store it in |
| // Parser - this makes sure that Isolate is not accidentally accessed via |
| // ParseInfo during background parsing. |
| DCHECK(!info->script().is_null() || info->source_stream() != NULL); |
| set_allow_lazy(info->allow_lazy_parsing()); |
| set_allow_natives(FLAG_allow_natives_syntax || info->is_native()); |
| set_allow_tailcalls(FLAG_harmony_tailcalls && !info->is_native() && |
| info->isolate()->is_tail_call_elimination_enabled()); |
| set_allow_harmony_do_expressions(FLAG_harmony_do_expressions); |
| set_allow_harmony_for_in(FLAG_harmony_for_in); |
| set_allow_harmony_function_name(FLAG_harmony_function_name); |
| set_allow_harmony_function_sent(FLAG_harmony_function_sent); |
| set_allow_harmony_restrictive_declarations( |
| FLAG_harmony_restrictive_declarations); |
| set_allow_harmony_exponentiation_operator( |
| FLAG_harmony_exponentiation_operator); |
| set_allow_harmony_async_await(FLAG_harmony_async_await); |
| for (int feature = 0; feature < v8::Isolate::kUseCounterFeatureCount; |
| ++feature) { |
| use_counts_[feature] = 0; |
| } |
| if (info->ast_value_factory() == NULL) { |
| // info takes ownership of AstValueFactory. |
| info->set_ast_value_factory(new AstValueFactory(zone(), info->hash_seed())); |
| info->set_ast_value_factory_owned(); |
| ast_value_factory_ = info->ast_value_factory(); |
| } |
| } |
| |
| |
| FunctionLiteral* Parser::ParseProgram(Isolate* isolate, ParseInfo* info) { |
| // TODO(bmeurer): We temporarily need to pass allow_nesting = true here, |
| // see comment for HistogramTimerScope class. |
| |
| // It's OK to use the Isolate & counters here, since this function is only |
| // called in the main thread. |
| DCHECK(parsing_on_main_thread_); |
| |
| HistogramTimerScope timer_scope(isolate->counters()->parse(), true); |
| RuntimeCallTimerScope runtime_timer(isolate, &RuntimeCallStats::Parse); |
| TRACE_EVENT0("v8", "V8.Parse"); |
| Handle<String> source(String::cast(info->script()->source())); |
| isolate->counters()->total_parse_size()->Increment(source->length()); |
| base::ElapsedTimer timer; |
| if (FLAG_trace_parse) { |
| timer.Start(); |
| } |
| fni_ = new (zone()) FuncNameInferrer(ast_value_factory(), zone()); |
| |
| // Initialize parser state. |
| CompleteParserRecorder recorder; |
| |
| if (produce_cached_parse_data()) { |
| log_ = &recorder; |
| } else if (consume_cached_parse_data()) { |
| cached_parse_data_->Initialize(); |
| } |
| |
| source = String::Flatten(source); |
| FunctionLiteral* result; |
| |
| if (source->IsExternalTwoByteString()) { |
| // Notice that the stream is destroyed at the end of the branch block. |
| // The last line of the blocks can't be moved outside, even though they're |
| // identical calls. |
| ExternalTwoByteStringUtf16CharacterStream stream( |
| Handle<ExternalTwoByteString>::cast(source), 0, source->length()); |
| scanner_.Initialize(&stream); |
| result = DoParseProgram(info); |
| } else { |
| GenericStringUtf16CharacterStream stream(source, 0, source->length()); |
| scanner_.Initialize(&stream); |
| result = DoParseProgram(info); |
| } |
| if (result != NULL) { |
| DCHECK_EQ(scanner_.peek_location().beg_pos, source->length()); |
| } |
| HandleSourceURLComments(isolate, info->script()); |
| |
| if (FLAG_trace_parse && result != NULL) { |
| double ms = timer.Elapsed().InMillisecondsF(); |
| if (info->is_eval()) { |
| PrintF("[parsing eval"); |
| } else if (info->script()->name()->IsString()) { |
| String* name = String::cast(info->script()->name()); |
| base::SmartArrayPointer<char> name_chars = name->ToCString(); |
| PrintF("[parsing script: %s", name_chars.get()); |
| } else { |
| PrintF("[parsing script"); |
| } |
| PrintF(" - took %0.3f ms]\n", ms); |
| } |
| if (produce_cached_parse_data()) { |
| if (result != NULL) *info->cached_data() = recorder.GetScriptData(); |
| log_ = NULL; |
| } |
| return result; |
| } |
| |
| |
| FunctionLiteral* Parser::DoParseProgram(ParseInfo* info) { |
| // Note that this function can be called from the main thread or from a |
| // background thread. We should not access anything Isolate / heap dependent |
| // via ParseInfo, and also not pass it forward. |
| DCHECK(scope_ == NULL); |
| DCHECK(target_stack_ == NULL); |
| |
| Mode parsing_mode = FLAG_lazy && allow_lazy() ? PARSE_LAZILY : PARSE_EAGERLY; |
| if (allow_natives() || extension_ != NULL) parsing_mode = PARSE_EAGERLY; |
| |
| FunctionLiteral* result = NULL; |
| { |
| // TODO(wingo): Add an outer SCRIPT_SCOPE corresponding to the native |
| // context, which will have the "this" binding for script scopes. |
| Scope* scope = NewScope(scope_, SCRIPT_SCOPE); |
| info->set_script_scope(scope); |
| if (!info->context().is_null() && !info->context()->IsNativeContext()) { |
| scope = Scope::DeserializeScopeChain(info->isolate(), zone(), |
| *info->context(), scope); |
| // The Scope is backed up by ScopeInfo (which is in the V8 heap); this |
| // means the Parser cannot operate independent of the V8 heap. Tell the |
| // string table to internalize strings and values right after they're |
| // created. This kind of parsing can only be done in the main thread. |
| DCHECK(parsing_on_main_thread_); |
| ast_value_factory()->Internalize(info->isolate()); |
| } |
| original_scope_ = scope; |
| if (info->is_eval()) { |
| if (!scope->is_script_scope() || is_strict(info->language_mode())) { |
| parsing_mode = PARSE_EAGERLY; |
| } |
| scope = NewScope(scope, EVAL_SCOPE); |
| } else if (info->is_module()) { |
| scope = NewScope(scope, MODULE_SCOPE); |
| } |
| |
| scope->set_start_position(0); |
| |
| // Enter 'scope' with the given parsing mode. |
| ParsingModeScope parsing_mode_scope(this, parsing_mode); |
| AstNodeFactory function_factory(ast_value_factory()); |
| FunctionState function_state(&function_state_, &scope_, scope, |
| kNormalFunction, &function_factory); |
| |
| ZoneList<Statement*>* body = new(zone()) ZoneList<Statement*>(16, zone()); |
| bool ok = true; |
| int beg_pos = scanner()->location().beg_pos; |
| 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 |
| // to enable script-wide strict mode below. |
| scope_->SetLanguageMode(info->language_mode()); |
| ParseStatementList(body, Token::EOS, &ok); |
| } |
| |
| // The parser will peek but not consume EOS. Our scope logically goes all |
| // the way to the EOS, though. |
| scope->set_end_position(scanner()->peek_location().beg_pos); |
| |
| if (ok && is_strict(language_mode())) { |
| CheckStrictOctalLiteral(beg_pos, scanner()->location().end_pos, &ok); |
| CheckDecimalLiteralWithLeadingZero(use_counts_, beg_pos, |
| scanner()->location().end_pos); |
| } |
| if (ok && is_sloppy(language_mode())) { |
| // TODO(littledan): Function bindings on the global object that modify |
| // pre-existing bindings should be made writable, enumerable and |
| // nonconfigurable if possible, whereas this code will leave attributes |
| // unchanged if the property already exists. |
| InsertSloppyBlockFunctionVarBindings(scope, &ok); |
| } |
| if (ok) { |
| CheckConflictingVarDeclarations(scope_, &ok); |
| } |
| |
| if (ok && info->parse_restriction() == ONLY_SINGLE_FUNCTION_LITERAL) { |
| if (body->length() != 1 || |
| !body->at(0)->IsExpressionStatement() || |
| !body->at(0)->AsExpressionStatement()-> |
| expression()->IsFunctionLiteral()) { |
| ReportMessage(MessageTemplate::kSingleFunctionLiteral); |
| ok = false; |
| } |
| } |
| |
| if (ok) { |
| ParserTraits::RewriteDestructuringAssignments(); |
| result = factory()->NewScriptOrEvalFunctionLiteral( |
| scope_, body, function_state.materialized_literal_count(), |
| function_state.expected_property_count()); |
| } |
| } |
| |
| // Make sure the target stack is empty. |
| DCHECK(target_stack_ == NULL); |
| |
| return result; |
| } |
| |
| |
| FunctionLiteral* Parser::ParseLazy(Isolate* isolate, ParseInfo* info) { |
| // It's OK to use the Isolate & counters here, since this function is only |
| // called in the main thread. |
| DCHECK(parsing_on_main_thread_); |
| RuntimeCallTimerScope runtime_timer(isolate, &RuntimeCallStats::ParseLazy); |
| HistogramTimerScope timer_scope(isolate->counters()->parse_lazy()); |
| TRACE_EVENT0("v8", "V8.ParseLazy"); |
| Handle<String> source(String::cast(info->script()->source())); |
| isolate->counters()->total_parse_size()->Increment(source->length()); |
| base::ElapsedTimer timer; |
| if (FLAG_trace_parse) { |
| timer.Start(); |
| } |
| Handle<SharedFunctionInfo> shared_info = info->shared_info(); |
| |
| // Initialize parser state. |
| source = String::Flatten(source); |
| FunctionLiteral* result; |
| if (source->IsExternalTwoByteString()) { |
| ExternalTwoByteStringUtf16CharacterStream stream( |
| Handle<ExternalTwoByteString>::cast(source), |
| shared_info->start_position(), |
| shared_info->end_position()); |
| result = ParseLazy(isolate, info, &stream); |
| } else { |
| GenericStringUtf16CharacterStream stream(source, |
| shared_info->start_position(), |
| shared_info->end_position()); |
| result = ParseLazy(isolate, info, &stream); |
| } |
| |
| if (FLAG_trace_parse && result != NULL) { |
| double ms = timer.Elapsed().InMillisecondsF(); |
| base::SmartArrayPointer<char> name_chars = |
| result->debug_name()->ToCString(); |
| PrintF("[parsing function: %s - took %0.3f ms]\n", name_chars.get(), ms); |
| } |
| return result; |
| } |
| |
| static FunctionLiteral::FunctionType ComputeFunctionType( |
| Handle<SharedFunctionInfo> shared_info) { |
| if (shared_info->is_declaration()) { |
| return FunctionLiteral::kDeclaration; |
| } else if (shared_info->is_named_expression()) { |
| return FunctionLiteral::kNamedExpression; |
| } else if (IsConciseMethod(shared_info->kind()) || |
| IsAccessorFunction(shared_info->kind())) { |
| return FunctionLiteral::kAccessorOrMethod; |
| } |
| return FunctionLiteral::kAnonymousExpression; |
| } |
| |
| FunctionLiteral* Parser::ParseLazy(Isolate* isolate, ParseInfo* info, |
| Utf16CharacterStream* source) { |
| Handle<SharedFunctionInfo> shared_info = info->shared_info(); |
| scanner_.Initialize(source); |
| DCHECK(scope_ == NULL); |
| DCHECK(target_stack_ == NULL); |
| |
| Handle<String> name(String::cast(shared_info->name())); |
| DCHECK(ast_value_factory()); |
| fni_ = new (zone()) FuncNameInferrer(ast_value_factory(), zone()); |
| const AstRawString* raw_name = ast_value_factory()->GetString(name); |
| fni_->PushEnclosingName(raw_name); |
| |
| ParsingModeScope parsing_mode(this, PARSE_EAGERLY); |
| |
| // Place holder for the result. |
| FunctionLiteral* result = NULL; |
| |
| { |
| // Parse the function literal. |
| Scope* scope = NewScope(scope_, SCRIPT_SCOPE); |
| info->set_script_scope(scope); |
| if (!info->context().is_null()) { |
| // Ok to use Isolate here, since lazy function parsing is only done in the |
| // main thread. |
| DCHECK(parsing_on_main_thread_); |
| scope = Scope::DeserializeScopeChain(isolate, zone(), *info->context(), |
| scope); |
| } |
| original_scope_ = scope; |
| AstNodeFactory function_factory(ast_value_factory()); |
| FunctionState function_state(&function_state_, &scope_, scope, |
| shared_info->kind(), &function_factory); |
| DCHECK(is_sloppy(scope->language_mode()) || |
| is_strict(info->language_mode())); |
| DCHECK(info->language_mode() == shared_info->language_mode()); |
| FunctionLiteral::FunctionType function_type = |
| ComputeFunctionType(shared_info); |
| bool ok = true; |
| |
| if (shared_info->is_arrow()) { |
| bool is_async = allow_harmony_async_await() && shared_info->is_async(); |
| if (is_async) { |
| DCHECK(!scanner()->HasAnyLineTerminatorAfterNext()); |
| Consume(Token::ASYNC); |
| DCHECK(peek_any_identifier() || peek() == Token::LPAREN); |
| } |
| |
| // TODO(adamk): We should construct this scope from the ScopeInfo. |
| Scope* scope = |
| NewScope(scope_, FUNCTION_SCOPE, FunctionKind::kArrowFunction); |
| |
| // These two bits only need to be explicitly set because we're |
| // not passing the ScopeInfo to the Scope constructor. |
| // TODO(adamk): Remove these calls once the above NewScope call |
| // passes the ScopeInfo. |
| if (shared_info->scope_info()->CallsEval()) { |
| scope->RecordEvalCall(); |
| } |
| SetLanguageMode(scope, shared_info->language_mode()); |
| |
| scope->set_start_position(shared_info->start_position()); |
| ExpressionClassifier formals_classifier(this); |
| ParserFormalParameters formals(scope); |
| Checkpoint checkpoint(this); |
| { |
| // Parsing patterns as variable reference expression creates |
| // NewUnresolved references in current scope. Entrer arrow function |
| // scope for formal parameter parsing. |
| BlockState block_state(&scope_, scope); |
| if (Check(Token::LPAREN)) { |
| // '(' StrictFormalParameters ')' |
| ParseFormalParameterList(&formals, &formals_classifier, &ok); |
| if (ok) ok = Check(Token::RPAREN); |
| } else { |
| // BindingIdentifier |
| ParseFormalParameter(&formals, &formals_classifier, &ok); |
| if (ok) { |
| DeclareFormalParameter(formals.scope, formals.at(0), |
| &formals_classifier); |
| } |
| } |
| } |
| |
| if (ok) { |
| checkpoint.Restore(&formals.materialized_literals_count); |
| // Pass `accept_IN=true` to ParseArrowFunctionLiteral --- This should |
| // not be observable, or else the preparser would have failed. |
| Expression* expression = ParseArrowFunctionLiteral( |
| true, formals, is_async, formals_classifier, &ok); |
| if (ok) { |
| // Scanning must end at the same position that was recorded |
| // previously. If not, parsing has been interrupted due to a stack |
| // overflow, at which point the partially parsed arrow function |
| // concise body happens to be a valid expression. This is a problem |
| // only for arrow functions with single expression bodies, since there |
| // is no end token such as "}" for normal functions. |
| if (scanner()->location().end_pos == shared_info->end_position()) { |
| // The pre-parser saw an arrow function here, so the full parser |
| // must produce a FunctionLiteral. |
| DCHECK(expression->IsFunctionLiteral()); |
| result = expression->AsFunctionLiteral(); |
| } else { |
| ok = false; |
| } |
| } |
| } |
| } else if (shared_info->is_default_constructor()) { |
| result = DefaultConstructor( |
| raw_name, IsSubclassConstructor(shared_info->kind()), scope, |
| shared_info->start_position(), shared_info->end_position(), |
| shared_info->language_mode()); |
| } else { |
| result = ParseFunctionLiteral(raw_name, Scanner::Location::invalid(), |
| kSkipFunctionNameCheck, shared_info->kind(), |
| RelocInfo::kNoPosition, function_type, |
| shared_info->language_mode(), &ok); |
| } |
| // Make sure the results agree. |
| DCHECK(ok == (result != NULL)); |
| } |
| |
| // Make sure the target stack is empty. |
| DCHECK(target_stack_ == NULL); |
| |
| if (result != NULL) { |
| Handle<String> inferred_name(shared_info->inferred_name()); |
| result->set_inferred_name(inferred_name); |
| } |
| return result; |
| } |
| |
| |
| void* Parser::ParseStatementList(ZoneList<Statement*>* body, int end_token, |
| bool* ok) { |
| // StatementList :: |
| // (StatementListItem)* <end_token> |
| |
| // Allocate a target stack to use for this set of source |
| // elements. This way, all scripts and functions get their own |
| // target stack thus avoiding illegal breaks and continues across |
| // functions. |
| TargetScope scope(&this->target_stack_); |
| |
| DCHECK(body != NULL); |
| bool directive_prologue = true; // Parsing directive prologue. |
| |
| while (peek() != end_token) { |
| if (directive_prologue && peek() != Token::STRING) { |
| directive_prologue = false; |
| } |
| |
| Scanner::Location token_loc = scanner()->peek_location(); |
| Statement* stat = ParseStatementListItem(CHECK_OK); |
| if (stat == NULL || stat->IsEmpty()) { |
| directive_prologue = false; // End of directive prologue. |
| continue; |
| } |
| |
| if (directive_prologue) { |
| // A shot at a directive. |
| ExpressionStatement* e_stat; |
| Literal* literal; |
| // Still processing directive prologue? |
| if ((e_stat = stat->AsExpressionStatement()) != NULL && |
| (literal = e_stat->expression()->AsLiteral()) != NULL && |
| literal->raw_value()->IsString()) { |
| // Check "use strict" directive (ES5 14.1), "use asm" directive. |
| bool use_strict_found = |
| literal->raw_value()->AsString() == |
| ast_value_factory()->use_strict_string() && |
| token_loc.end_pos - token_loc.beg_pos == |
| ast_value_factory()->use_strict_string()->length() + 2; |
| if (use_strict_found) { |
| if (is_sloppy(scope_->language_mode())) { |
| RaiseLanguageMode(STRICT); |
| } |
| |
| if (!scope_->HasSimpleParameters()) { |
| // TC39 deemed "use strict" directives to be an error when occurring |
| // in the body of a function with non-simple parameter list, on |
| // 29/7/2015. https://goo.gl/ueA7Ln |
| const AstRawString* string = literal->raw_value()->AsString(); |
| ParserTraits::ReportMessageAt( |
| token_loc, MessageTemplate::kIllegalLanguageModeDirective, |
| string); |
| *ok = false; |
| return nullptr; |
| } |
| // Because declarations in strict eval code don't leak into the scope |
| // of the eval call, it is likely that functions declared in strict |
| // eval code will be used within the eval code, so lazy parsing is |
| // probably not a win. |
| if (scope_->is_eval_scope()) mode_ = PARSE_EAGERLY; |
| } else if (literal->raw_value()->AsString() == |
| ast_value_factory()->use_asm_string() && |
| token_loc.end_pos - token_loc.beg_pos == |
| ast_value_factory()->use_asm_string()->length() + 2) { |
| // Store the usage count; The actual use counter on the isolate is |
| // incremented after parsing is done. |
| ++use_counts_[v8::Isolate::kUseAsm]; |
| scope_->SetAsmModule(); |
| } else { |
| // Should not change mode, but will increment UseCounter |
| // if appropriate. Ditto usages below. |
| RaiseLanguageMode(SLOPPY); |
| } |
| } else { |
| // End of the directive prologue. |
| directive_prologue = false; |
| RaiseLanguageMode(SLOPPY); |
| } |
| } else { |
| RaiseLanguageMode(SLOPPY); |
| } |
| |
| body->Add(stat, zone()); |
| } |
| |
| return 0; |
| } |
| |
| |
| Statement* Parser::ParseStatementListItem(bool* ok) { |
| // (Ecma 262 6th Edition, 13.1): |
| // StatementListItem: |
| // Statement |
| // Declaration |
| const Token::Value peeked = peek(); |
| switch (peeked) { |
| case Token::FUNCTION: |
| return ParseHoistableDeclaration(NULL, ok); |
| case Token::CLASS: |
| Consume(Token::CLASS); |
| return ParseClassDeclaration(NULL, ok); |
| case Token::CONST: |
| return ParseVariableStatement(kStatementListItem, NULL, ok); |
| case Token::VAR: |
| return ParseVariableStatement(kStatementListItem, NULL, ok); |
| case Token::LET: |
| if (IsNextLetKeyword()) { |
| return ParseVariableStatement(kStatementListItem, NULL, ok); |
| } |
| break; |
| case Token::ASYNC: |
| if (allow_harmony_async_await() && PeekAhead() == Token::FUNCTION && |
| !scanner()->HasAnyLineTerminatorAfterNext()) { |
| Consume(Token::ASYNC); |
| return ParseAsyncFunctionDeclaration(NULL, ok); |
| } |
| /* falls through */ |
| default: |
| break; |
| } |
| return ParseStatement(NULL, kAllowLabelledFunctionStatement, ok); |
| } |
| |
| |
| Statement* Parser::ParseModuleItem(bool* ok) { |
| // (Ecma 262 6th Edition, 15.2): |
| // ModuleItem : |
| // ImportDeclaration |
| // ExportDeclaration |
| // StatementListItem |
| |
| switch (peek()) { |
| case Token::IMPORT: |
| return ParseImportDeclaration(ok); |
| case Token::EXPORT: |
| return ParseExportDeclaration(ok); |
| default: |
| return ParseStatementListItem(ok); |
| } |
| } |
| |
| |
| void* Parser::ParseModuleItemList(ZoneList<Statement*>* body, bool* ok) { |
| // (Ecma 262 6th Edition, 15.2): |
| // Module : |
| // ModuleBody? |
| // |
| // ModuleBody : |
| // ModuleItem* |
| |
| DCHECK(scope_->is_module_scope()); |
| |
| while (peek() != Token::EOS) { |
| Statement* stat = ParseModuleItem(CHECK_OK); |
| if (stat && !stat->IsEmpty()) { |
| body->Add(stat, zone()); |
| } |
| } |
| |
| // Check that all exports are bound. |
| ModuleDescriptor* descriptor = scope_->module(); |
| for (ModuleDescriptor::Iterator it = descriptor->iterator(); !it.done(); |
| it.Advance()) { |
| if (scope_->LookupLocal(it.local_name()) == NULL) { |
| // TODO(adamk): Pass both local_name and export_name once ParserTraits |
| // supports multiple arg error messages. |
| // Also try to report this at a better location. |
| ParserTraits::ReportMessage(MessageTemplate::kModuleExportUndefined, |
| it.local_name()); |
| *ok = false; |
| return NULL; |
| } |
| } |
| |
| return NULL; |
| } |
| |
| |
| const AstRawString* Parser::ParseModuleSpecifier(bool* ok) { |
| // ModuleSpecifier : |
| // StringLiteral |
| |
| Expect(Token::STRING, CHECK_OK); |
| return GetSymbol(scanner()); |
| } |
| |
| |
| void* Parser::ParseExportClause(ZoneList<const AstRawString*>* export_names, |
| ZoneList<Scanner::Location>* export_locations, |
| ZoneList<const AstRawString*>* local_names, |
| Scanner::Location* reserved_loc, bool* ok) { |
| // ExportClause : |
| // '{' '}' |
| // '{' ExportsList '}' |
| // '{' ExportsList ',' '}' |
| // |
| // ExportsList : |
| // ExportSpecifier |
| // ExportsList ',' ExportSpecifier |
| // |
| // ExportSpecifier : |
| // IdentifierName |
| // IdentifierName 'as' IdentifierName |
| |
| Expect(Token::LBRACE, CHECK_OK); |
| |
| Token::Value name_tok; |
| while ((name_tok = peek()) != Token::RBRACE) { |
| // 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, parsing_module_)) { |
| *reserved_loc = scanner()->location(); |
| } |
| const AstRawString* local_name = ParseIdentifierName(CHECK_OK); |
| const AstRawString* export_name = NULL; |
| if (CheckContextualKeyword(CStrVector("as"))) { |
| export_name = ParseIdentifierName(CHECK_OK); |
| } |
| if (export_name == NULL) { |
| export_name = local_name; |
| } |
| export_names->Add(export_name, zone()); |
| local_names->Add(local_name, zone()); |
| export_locations->Add(scanner()->location(), zone()); |
| if (peek() == Token::RBRACE) break; |
| Expect(Token::COMMA, CHECK_OK); |
| } |
| |
| Expect(Token::RBRACE, CHECK_OK); |
| |
| return 0; |
| } |
| |
| |
| ZoneList<ImportDeclaration*>* Parser::ParseNamedImports(int pos, bool* ok) { |
| // NamedImports : |
| // '{' '}' |
| // '{' ImportsList '}' |
| // '{' ImportsList ',' '}' |
| // |
| // ImportsList : |
| // ImportSpecifier |
| // ImportsList ',' ImportSpecifier |
| // |
| // ImportSpecifier : |
| // BindingIdentifier |
| // IdentifierName 'as' BindingIdentifier |
| |
| Expect(Token::LBRACE, CHECK_OK); |
| |
| ZoneList<ImportDeclaration*>* result = |
| new (zone()) ZoneList<ImportDeclaration*>(1, zone()); |
| while (peek() != Token::RBRACE) { |
| const AstRawString* import_name = ParseIdentifierName(CHECK_OK); |
| const AstRawString* local_name = import_name; |
| // In the presence of 'as', the left-side of the 'as' can |
| // be any IdentifierName. But without 'as', it must be a valid |
| // BindingIdentifier. |
| if (CheckContextualKeyword(CStrVector("as"))) { |
| local_name = ParseIdentifierName(CHECK_OK); |
| } |
| if (!Token::IsIdentifier(scanner()->current_token(), STRICT, false, |
| parsing_module_)) { |
| *ok = false; |
| ReportMessage(MessageTemplate::kUnexpectedReserved); |
| return NULL; |
| } else if (IsEvalOrArguments(local_name)) { |
| *ok = false; |
| ReportMessage(MessageTemplate::kStrictEvalArguments); |
| return NULL; |
| } |
| VariableProxy* proxy = NewUnresolved(local_name, CONST); |
| ImportDeclaration* declaration = |
| factory()->NewImportDeclaration(proxy, import_name, NULL, scope_, pos); |
| Declare(declaration, DeclarationDescriptor::NORMAL, true, CHECK_OK); |
| result->Add(declaration, zone()); |
| if (peek() == Token::RBRACE) break; |
| Expect(Token::COMMA, CHECK_OK); |
| } |
| |
| Expect(Token::RBRACE, CHECK_OK); |
| |
| return result; |
| } |
| |
| |
| Statement* Parser::ParseImportDeclaration(bool* ok) { |
| // ImportDeclaration : |
| // 'import' ImportClause 'from' ModuleSpecifier ';' |
| // 'import' ModuleSpecifier ';' |
| // |
| // ImportClause : |
| // NameSpaceImport |
| // NamedImports |
| // ImportedDefaultBinding |
| // ImportedDefaultBinding ',' NameSpaceImport |
| // ImportedDefaultBinding ',' NamedImports |
| // |
| // NameSpaceImport : |
| // '*' 'as' ImportedBinding |
| |
| int pos = peek_position(); |
| Expect(Token::IMPORT, CHECK_OK); |
| |
| Token::Value tok = peek(); |
| |
| // 'import' ModuleSpecifier ';' |
| if (tok == Token::STRING) { |
| const AstRawString* module_specifier = ParseModuleSpecifier(CHECK_OK); |
| scope_->module()->AddModuleRequest(module_specifier, zone()); |
| ExpectSemicolon(CHECK_OK); |
| return factory()->NewEmptyStatement(pos); |
| } |
| |
| // Parse ImportedDefaultBinding if present. |
| ImportDeclaration* import_default_declaration = NULL; |
| if (tok != Token::MUL && tok != Token::LBRACE) { |
| const AstRawString* local_name = |
| ParseIdentifier(kDontAllowRestrictedIdentifiers, CHECK_OK); |
| VariableProxy* proxy = NewUnresolved(local_name, CONST); |
| import_default_declaration = factory()->NewImportDeclaration( |
| proxy, ast_value_factory()->default_string(), NULL, scope_, pos); |
| Declare(import_default_declaration, DeclarationDescriptor::NORMAL, true, |
| CHECK_OK); |
| } |
| |
| const AstRawString* module_instance_binding = NULL; |
| ZoneList<ImportDeclaration*>* named_declarations = NULL; |
| if (import_default_declaration == NULL || Check(Token::COMMA)) { |
| switch (peek()) { |
| case Token::MUL: { |
| Consume(Token::MUL); |
| ExpectContextualKeyword(CStrVector("as"), CHECK_OK); |
| module_instance_binding = |
| ParseIdentifier(kDontAllowRestrictedIdentifiers, CHECK_OK); |
| // TODO(ES6): Add an appropriate declaration. |
| break; |
| } |
| |
| case Token::LBRACE: |
| named_declarations = ParseNamedImports(pos, CHECK_OK); |
| break; |
| |
| default: |
| *ok = false; |
| ReportUnexpectedToken(scanner()->current_token()); |
| return NULL; |
| } |
| } |
| |
| ExpectContextualKeyword(CStrVector("from"), CHECK_OK); |
| const AstRawString* module_specifier = ParseModuleSpecifier(CHECK_OK); |
| scope_->module()->AddModuleRequest(module_specifier, zone()); |
| |
| if (module_instance_binding != NULL) { |
| // TODO(ES6): Set the module specifier for the module namespace binding. |
| } |
| |
| if (import_default_declaration != NULL) { |
| import_default_declaration->set_module_specifier(module_specifier); |
| } |
| |
| if (named_declarations != NULL) { |
| for (int i = 0; i < named_declarations->length(); ++i) { |
| named_declarations->at(i)->set_module_specifier(module_specifier); |
| } |
| } |
| |
| ExpectSemicolon(CHECK_OK); |
| return factory()->NewEmptyStatement(pos); |
| } |
| |
| |
| Statement* Parser::ParseExportDefault(bool* ok) { |
| // Supports the following productions, starting after the 'default' token: |
| // 'export' 'default' FunctionDeclaration |
| // 'export' 'default' ClassDeclaration |
| // 'export' 'default' AssignmentExpression[In] ';' |
| |
| Expect(Token::DEFAULT, CHECK_OK); |
| Scanner::Location default_loc = scanner()->location(); |
| |
| const AstRawString* default_string = ast_value_factory()->default_string(); |
| ZoneList<const AstRawString*> names(1, zone()); |
| Statement* result = nullptr; |
| Expression* default_export = nullptr; |
| switch (peek()) { |
| case Token::FUNCTION: { |
| Consume(Token::FUNCTION); |
| int pos = position(); |
| bool is_generator = Check(Token::MUL); |
| if (peek() == Token::LPAREN) { |
| // FunctionDeclaration[+Default] :: |
| // 'function' '(' FormalParameters ')' '{' FunctionBody '}' |
| // |
| // GeneratorDeclaration[+Default] :: |
| // 'function' '*' '(' FormalParameters ')' '{' FunctionBody '}' |
| default_export = ParseFunctionLiteral( |
| default_string, Scanner::Location::invalid(), |
| kSkipFunctionNameCheck, |
| is_generator ? FunctionKind::kGeneratorFunction |
| : FunctionKind::kNormalFunction, |
| pos, FunctionLiteral::kDeclaration, language_mode(), CHECK_OK); |
| result = factory()->NewEmptyStatement(RelocInfo::kNoPosition); |
| } else { |
| result = ParseHoistableDeclaration( |
| pos, is_generator ? ParseFunctionFlags::kIsGenerator |
| : ParseFunctionFlags::kIsNormal, |
| &names, CHECK_OK); |
| } |
| break; |
| } |
| |
| case Token::CLASS: |
| Consume(Token::CLASS); |
| if (peek() == Token::EXTENDS || peek() == Token::LBRACE) { |
| // ClassDeclaration[+Default] :: |
| // 'class' ('extends' LeftHandExpression)? '{' ClassBody '}' |
| default_export = ParseClassLiteral(nullptr, default_string, |
| Scanner::Location::invalid(), false, |
| position(), CHECK_OK); |
| result = factory()->NewEmptyStatement(RelocInfo::kNoPosition); |
| } else { |
| result = ParseClassDeclaration(&names, CHECK_OK); |
| } |
| break; |
| |
| case Token::ASYNC: |
| if (allow_harmony_async_await() && PeekAhead() == Token::FUNCTION && |
| !scanner()->HasAnyLineTerminatorAfterNext()) { |
| Consume(Token::ASYNC); |
| Consume(Token::FUNCTION); |
| int pos = position(); |
| if (peek() == Token::LPAREN) { |
| // AsyncFunctionDeclaration[+Default] :: |
| // async [no LineTerminator here] function ( FormalParameters ) { |
| // AsyncFunctionBody |
| // } |
| default_export = ParseFunctionLiteral( |
| default_string, Scanner::Location::invalid(), |
| kSkipFunctionNameCheck, FunctionKind::kAsyncFunction, pos, |
| FunctionLiteral::kDeclaration, language_mode(), CHECK_OK); |
| result = factory()->NewEmptyStatement(RelocInfo::kNoPosition); |
| } else { |
| result = ParseHoistableDeclaration(pos, ParseFunctionFlags::kIsAsync, |
| &names, CHECK_OK); |
| } |
| break; |
| } |
| /* falls through */ |
| |
| default: { |
| int pos = peek_position(); |
| ExpressionClassifier classifier(this); |
| Expression* expr = ParseAssignmentExpression(true, &classifier, CHECK_OK); |
| RewriteNonPattern(&classifier, CHECK_OK); |
| |
| ExpectSemicolon(CHECK_OK); |
| result = factory()->NewExpressionStatement(expr, pos); |
| break; |
| } |
| } |
| |
| DCHECK_LE(names.length(), 1); |
| if (names.length() == 1) { |
| scope_->module()->AddLocalExport(default_string, names.first(), zone(), ok); |
| if (!*ok) { |
| ParserTraits::ReportMessageAt( |
| default_loc, MessageTemplate::kDuplicateExport, default_string); |
| return nullptr; |
| } |
| } else { |
| // TODO(ES6): Assign result to a const binding with the name "*default*" |
| // and add an export entry with "*default*" as the local name. |
| USE(default_export); |
| } |
| |
| return result; |
| } |
| |
| |
| Statement* Parser::ParseExportDeclaration(bool* ok) { |
| // ExportDeclaration: |
| // 'export' '*' 'from' ModuleSpecifier ';' |
| // 'export' ExportClause ('from' ModuleSpecifier)? ';' |
| // 'export' VariableStatement |
| // 'export' Declaration |
| // 'export' 'default' ... (handled in ParseExportDefault) |
| |
| int pos = peek_position(); |
| Expect(Token::EXPORT, CHECK_OK); |
| |
| Statement* result = NULL; |
| ZoneList<const AstRawString*> names(1, zone()); |
| switch (peek()) { |
| case Token::DEFAULT: |
| return ParseExportDefault(ok); |
| |
| case Token::MUL: { |
| Consume(Token::MUL); |
| ExpectContextualKeyword(CStrVector("from"), CHECK_OK); |
| const AstRawString* module_specifier = ParseModuleSpecifier(CHECK_OK); |
| scope_->module()->AddModuleRequest(module_specifier, zone()); |
| // TODO(ES6): scope_->module()->AddStarExport(...) |
| ExpectSemicolon(CHECK_OK); |
| return factory()->NewEmptyStatement(pos); |
| } |
| |
| case Token::LBRACE: { |
| // There are two cases here: |
| // |
| // 'export' ExportClause ';' |
| // and |
| // 'export' ExportClause FromClause ';' |
| // |
| // In the first case, the exported identifiers in ExportClause must |
| // not be reserved words, while in the latter they may be. We |
| // pass in a location that gets filled with the first reserved word |
| // encountered, and then throw a SyntaxError if we are in the |
| // non-FromClause case. |
| Scanner::Location reserved_loc = Scanner::Location::invalid(); |
| ZoneList<const AstRawString*> export_names(1, zone()); |
| ZoneList<Scanner::Location> export_locations(1, zone()); |
| ZoneList<const AstRawString*> local_names(1, zone()); |
| ParseExportClause(&export_names, &export_locations, &local_names, |
| &reserved_loc, CHECK_OK); |
| const AstRawString* indirect_export_module_specifier = NULL; |
| if (CheckContextualKeyword(CStrVector("from"))) { |
| indirect_export_module_specifier = ParseModuleSpecifier(CHECK_OK); |
| } else if (reserved_loc.IsValid()) { |
| // No FromClause, so reserved words are invalid in ExportClause. |
| *ok = false; |
| ReportMessageAt(reserved_loc, MessageTemplate::kUnexpectedReserved); |
| return NULL; |
| } |
| ExpectSemicolon(CHECK_OK); |
| const int length = export_names.length(); |
| DCHECK_EQ(length, local_names.length()); |
| DCHECK_EQ(length, export_locations.length()); |
| if (indirect_export_module_specifier == NULL) { |
| for (int i = 0; i < length; ++i) { |
| scope_->module()->AddLocalExport(export_names[i], local_names[i], |
| zone(), ok); |
| if (!*ok) { |
| ParserTraits::ReportMessageAt(export_locations[i], |
| MessageTemplate::kDuplicateExport, |
| export_names[i]); |
| return NULL; |
| } |
| } |
| } else { |
| scope_->module()->AddModuleRequest(indirect_export_module_specifier, |
| zone()); |
| for (int i = 0; i < length; ++i) { |
| // TODO(ES6): scope_->module()->AddIndirectExport(...);( |
| } |
| } |
| return factory()->NewEmptyStatement(pos); |
| } |
| |
| case Token::FUNCTION: |
| result = ParseHoistableDeclaration(&names, CHECK_OK); |
| break; |
| |
| case Token::CLASS: |
| Consume(Token::CLASS); |
| result = ParseClassDeclaration(&names, CHECK_OK); |
| break; |
| |
| case Token::VAR: |
| case Token::LET: |
| case Token::CONST: |
| result = ParseVariableStatement(kStatementListItem, &names, CHECK_OK); |
| break; |
| |
| case Token::ASYNC: |
| if (allow_harmony_async_await()) { |
| Consume(Token::ASYNC); |
| result = ParseAsyncFunctionDeclaration(&names, CHECK_OK); |
| break; |
| } |
| /* falls through */ |
| |
| default: |
| *ok = false; |
| ReportUnexpectedToken(scanner()->current_token()); |
| return NULL; |
| } |
| |
| // Extract declared names into export declarations. |
| ModuleDescriptor* descriptor = scope_->module(); |
| for (int i = 0; i < names.length(); ++i) { |
| descriptor->AddLocalExport(names[i], names[i], zone(), ok); |
| if (!*ok) { |
| // TODO(adamk): Possibly report this error at the right place. |
| ParserTraits::ReportMessage(MessageTemplate::kDuplicateExport, names[i]); |
| return NULL; |
| } |
| } |
| |
| DCHECK_NOT_NULL(result); |
| return result; |
| } |
| |
| Statement* Parser::ParseStatement(ZoneList<const AstRawString*>* labels, |
| AllowLabelledFunctionStatement allow_function, |
| bool* ok) { |
| // Statement :: |
| // EmptyStatement |
| // ... |
| |
| if (peek() == Token::SEMICOLON) { |
| Next(); |
| return factory()->NewEmptyStatement(RelocInfo::kNoPosition); |
| } |
| return ParseSubStatement(labels, allow_function, ok); |
| } |
| |
| Statement* Parser::ParseSubStatement( |
| ZoneList<const AstRawString*>* labels, |
| AllowLabelledFunctionStatement allow_function, bool* ok) { |
| // Statement :: |
| // Block |
| // VariableStatement |
| // EmptyStatement |
| // ExpressionStatement |
| // IfStatement |
| // IterationStatement |
| // ContinueStatement |
| // BreakStatement |
| // ReturnStatement |
| // WithStatement |
| // LabelledStatement |
| // SwitchStatement |
| // ThrowStatement |
| // TryStatement |
| // DebuggerStatement |
| |
| // Note: Since labels can only be used by 'break' and 'continue' |
| // statements, which themselves are only valid within blocks, |
| // iterations or 'switch' statements (i.e., BreakableStatements), |
| // labels can be simply ignored in all other cases; except for |
| // trivial labeled break statements 'label: break label' which is |
| // parsed into an empty statement. |
| switch (peek()) { |
| case Token::LBRACE: |
| return ParseBlock(labels, ok); |
| |
| case Token::SEMICOLON: |
| Next(); |
| return factory()->NewEmptyStatement(RelocInfo::kNoPosition); |
| |
| case Token::IF: |
| return ParseIfStatement(labels, ok); |
| |
| case Token::DO: |
| return ParseDoWhileStatement(labels, ok); |
| |
| case Token::WHILE: |
| return ParseWhileStatement(labels, ok); |
| |
| case Token::FOR: |
| return ParseForStatement(labels, ok); |
| |
| case Token::CONTINUE: |
| case Token::BREAK: |
| case Token::RETURN: |
| case Token::THROW: |
| case Token::TRY: { |
| // These statements must have their labels preserved in an enclosing |
| // block |
| if (labels == NULL) { |
| return ParseStatementAsUnlabelled(labels, ok); |
| } else { |
| Block* result = |
| factory()->NewBlock(labels, 1, false, RelocInfo::kNoPosition); |
| Target target(&this->target_stack_, result); |
| Statement* statement = ParseStatementAsUnlabelled(labels, CHECK_OK); |
| if (result) result->statements()->Add(statement, zone()); |
| return result; |
| } |
| } |
| |
| case Token::WITH: |
| return ParseWithStatement(labels, ok); |
| |
| case Token::SWITCH: |
| return ParseSwitchStatement(labels, ok); |
| |
| case Token::FUNCTION: |
| // FunctionDeclaration only allowed as a StatementListItem, not in |
| // an arbitrary Statement position. Exceptions such as |
| // ES#sec-functiondeclarations-in-ifstatement-statement-clauses |
| // are handled by calling ParseScopedStatement rather than |
| // ParseSubStatement directly. |
| ReportMessageAt(scanner()->peek_location(), |
| is_strict(language_mode()) |
| ? MessageTemplate::kStrictFunction |
| : MessageTemplate::kSloppyFunction); |
| *ok = false; |
| return nullptr; |
| |
| case Token::DEBUGGER: |
| return ParseDebuggerStatement(ok); |
| |
| case Token::VAR: |
| return ParseVariableStatement(kStatement, NULL, ok); |
| |
| default: |
| return ParseExpressionOrLabelledStatement(labels, allow_function, ok); |
| } |
| } |
| |
| Statement* Parser::ParseStatementAsUnlabelled( |
| ZoneList<const AstRawString*>* labels, bool* ok) { |
| switch (peek()) { |
| case Token::CONTINUE: |
| return ParseContinueStatement(ok); |
| |
| case Token::BREAK: |
| return ParseBreakStatement(labels, ok); |
| |
| case Token::RETURN: |
| return ParseReturnStatement(ok); |
| |
| case Token::THROW: |
| return ParseThrowStatement(ok); |
| |
| case Token::TRY: |
| return ParseTryStatement(ok); |
| |
| default: |
| UNREACHABLE(); |
| return NULL; |
| } |
| } |
| |
| |
| VariableProxy* Parser::NewUnresolved(const AstRawString* name, |
| VariableMode mode) { |
| // If we are inside a function, a declaration of a var/const variable is a |
| // truly local variable, and the scope of the variable is always the function |
| // scope. |
| // Let/const variables in harmony mode are always added to the immediately |
| // enclosing scope. |
| Scope* scope = |
| IsLexicalVariableMode(mode) ? scope_ : scope_->DeclarationScope(); |
| return scope->NewUnresolved(factory(), name, Variable::NORMAL, |
| scanner()->location().beg_pos, |
| scanner()->location().end_pos); |
| } |
| |
| |
| Variable* Parser::Declare(Declaration* declaration, |
| DeclarationDescriptor::Kind declaration_kind, |
| bool resolve, bool* ok, Scope* scope) { |
| VariableProxy* proxy = declaration->proxy(); |
| DCHECK(proxy->raw_name() != NULL); |
| const AstRawString* name = proxy->raw_name(); |
| VariableMode mode = declaration->mode(); |
| DCHECK(IsDeclaredVariableMode(mode) && mode != CONST_LEGACY); |
| bool is_function_declaration = declaration->IsFunctionDeclaration(); |
| if (scope == nullptr) scope = scope_; |
| Scope* declaration_scope = |
| IsLexicalVariableMode(mode) ? scope : scope->DeclarationScope(); |
| Variable* var = NULL; |
| |
| // If a suitable scope exists, then we can statically declare this |
| // variable and also set its mode. In any case, a Declaration node |
| // will be added to the scope so that the declaration can be added |
| // to the corresponding activation frame at runtime if necessary. |
| // For instance, var declarations inside a sloppy eval scope need |
| // to be added to the calling function context. Similarly, strict |
| // mode eval scope and lexical eval bindings do not leak variable |
| // declarations to the caller's scope so we declare all locals, too. |
| if (declaration_scope->is_function_scope() || |
| declaration_scope->is_block_scope() || |
| declaration_scope->is_module_scope() || |
| declaration_scope->is_script_scope() || |
| (declaration_scope->is_eval_scope() && |
| (is_strict(declaration_scope->language_mode()) || |
| IsLexicalVariableMode(mode)))) { |
| // Declare the variable in the declaration scope. |
| var = declaration_scope->LookupLocal(name); |
| if (var == NULL) { |
| // Declare the name. |
| Variable::Kind kind = Variable::NORMAL; |
| if (is_function_declaration) { |
| kind = Variable::FUNCTION; |
| } |
| var = declaration_scope->DeclareLocal( |
| name, mode, declaration->initialization(), kind, kNotAssigned); |
| } else if (IsLexicalVariableMode(mode) || |
| IsLexicalVariableMode(var->mode())) { |
| // Allow duplicate function decls for web compat, see bug 4693. |
| if (is_sloppy(language_mode()) && is_function_declaration && |
| var->is_function()) { |
| DCHECK(IsLexicalVariableMode(mode) && |
| IsLexicalVariableMode(var->mode())); |
| ++use_counts_[v8::Isolate::kSloppyModeBlockScopedFunctionRedefinition]; |
| } else { |
| // The name was declared in this scope before; check for conflicting |
| // re-declarations. We have a conflict if either of the declarations |
| // is not a var (in script scope, we also have to ignore legacy const |
| // for compatibility). There is similar code in runtime.cc in the |
| // Declare functions. The function CheckConflictingVarDeclarations |
| // checks for var and let bindings from different scopes whereas this |
| // is a check for conflicting declarations within the same scope. This |
| // check also covers the special case |
| // |
| // function () { let x; { var x; } } |
| // |
| // because the var declaration is hoisted to the function scope where |
| // 'x' is already bound. |
| DCHECK(IsDeclaredVariableMode(var->mode())); |
| // In harmony we treat re-declarations as early errors. See |
| // ES5 16 for a definition of early errors. |
| if (declaration_kind == DeclarationDescriptor::NORMAL) { |
| ParserTraits::ReportMessage(MessageTemplate::kVarRedeclaration, name); |
| } else { |
| ParserTraits::ReportMessage(MessageTemplate::kParamDupe); |
| } |
| *ok = false; |
| return nullptr; |
| } |
| } else if (mode == VAR) { |
| var->set_maybe_assigned(); |
| } |
| } else if (declaration_scope->is_eval_scope() && |
| is_sloppy(declaration_scope->language_mode()) && |
| !IsLexicalVariableMode(mode)) { |
| // In a var binding in a sloppy direct eval, pollute the enclosing scope |
| // with this new binding by doing the following: |
| // The proxy is bound to a lookup variable to force a dynamic declaration |
| // using the DeclareLookupSlot runtime function. |
| Variable::Kind kind = Variable::NORMAL; |
| // TODO(sigurds) figure out if kNotAssigned is OK here |
| var = new (zone()) Variable(declaration_scope, name, mode, kind, |
| declaration->initialization(), kNotAssigned); |
| var->AllocateTo(VariableLocation::LOOKUP, -1); |
| var->SetFromEval(); |
| resolve = true; |
| } |
| |
| |
| // We add a declaration node for every declaration. The compiler |
| // will only generate code if necessary. In particular, declarations |
| // for inner local variables that do not represent functions won't |
| // result in any generated code. |
| // |
| // Note that we always add an unresolved proxy even if it's not |
| // used, simply because we don't know in this method (w/o extra |
| // parameters) if the proxy is needed or not. The proxy will be |
| // bound during variable resolution time unless it was pre-bound |
| // below. |
| // |
| // WARNING: This will lead to multiple declaration nodes for the |
| // same variable if it is declared several times. This is not a |
| // semantic issue as long as we keep the source order, but it may be |
| // a performance issue since it may lead to repeated |
| // RuntimeHidden_DeclareLookupSlot calls. |
| declaration_scope->AddDeclaration(declaration); |
| |
| // If requested and we have a local variable, bind the proxy to the variable |
| // at parse-time. This is used for functions (and consts) declared inside |
| // statements: the corresponding function (or const) variable must be in the |
| // function scope and not a statement-local scope, e.g. as provided with a |
| // 'with' statement: |
| // |
| // with (obj) { |
| // function f() {} |
| // } |
| // |
| // which is translated into: |
| // |
| // with (obj) { |
| // // in this case this is not: 'var f; f = function () {};' |
| // var f = function () {}; |
| // } |
| // |
| // Note that if 'f' is accessed from inside the 'with' statement, it |
| // will be allocated in the context (because we must be able to look |
| // it up dynamically) but it will also be accessed statically, i.e., |
| // with a context slot index and a context chain length for this |
| // initialization code. Thus, inside the 'with' statement, we need |
| // both access to the static and the dynamic context chain; the |
| // runtime needs to provide both. |
| if (resolve && var != NULL) { |
| proxy->BindTo(var); |
| } |
| return var; |
| } |
| |
| |
| // Language extension which is only enabled for source files loaded |
| // through the API's extension mechanism. A native function |
| // declaration is resolved by looking up the function through a |
| // callback provided by the extension. |
| Statement* Parser::ParseNativeDeclaration(bool* ok) { |
| int pos = peek_position(); |
| Expect(Token::FUNCTION, CHECK_OK); |
| // Allow "eval" or "arguments" for backward compatibility. |
| const AstRawString* name = |
| ParseIdentifier(kAllowRestrictedIdentifiers, CHECK_OK); |
| Expect(Token::LPAREN, CHECK_OK); |
| bool done = (peek() == Token::RPAREN); |
| while (!done) { |
| ParseIdentifier(kAllowRestrictedIdentifiers, CHECK_OK); |
| done = (peek() == Token::RPAREN); |
| if (!done) { |
| Expect(Token::COMMA, CHECK_OK); |
| } |
| } |
| Expect(Token::RPAREN, CHECK_OK); |
| Expect(Token::SEMICOLON, CHECK_OK); |
| |
| // Make sure that the function containing the native declaration |
| // isn't lazily compiled. The extension structures are only |
| // accessible while parsing the first time not when reparsing |
| // because of lazy compilation. |
| // TODO(adamk): Should this be ClosureScope()? |
| scope_->DeclarationScope()->ForceEagerCompilation(); |
| |
| // TODO(1240846): It's weird that native function declarations are |
| // introduced dynamically when we meet their declarations, whereas |
| // other functions are set up when entering the surrounding scope. |
| VariableProxy* proxy = NewUnresolved(name, VAR); |
| Declaration* declaration = |
| factory()->NewVariableDeclaration(proxy, VAR, scope_, pos); |
| Declare(declaration, DeclarationDescriptor::NORMAL, true, CHECK_OK); |
| NativeFunctionLiteral* lit = factory()->NewNativeFunctionLiteral( |
| name, extension_, RelocInfo::kNoPosition); |
| return factory()->NewExpressionStatement( |
| factory()->NewAssignment(Token::INIT, proxy, lit, RelocInfo::kNoPosition), |
| pos); |
| } |
| |
| |
| Statement* Parser::ParseHoistableDeclaration( |
| ZoneList<const AstRawString*>* names, bool* ok) { |
| Expect(Token::FUNCTION, CHECK_OK); |
| int pos = position(); |
| ParseFunctionFlags flags = ParseFunctionFlags::kIsNormal; |
| if (Check(Token::MUL)) { |
| flags |= ParseFunctionFlags::kIsGenerator; |
| } |
| return ParseHoistableDeclaration(pos, flags, names, ok); |
| } |
| |
| Statement* Parser::ParseAsyncFunctionDeclaration( |
| ZoneList<const AstRawString*>* names, bool* ok) { |
| DCHECK_EQ(scanner()->current_token(), Token::ASYNC); |
| int pos = position(); |
| if (scanner()->HasAnyLineTerminatorBeforeNext()) { |
| *ok = false; |
| ReportUnexpectedToken(scanner()->current_token()); |
| return nullptr; |
| } |
| Expect(Token::FUNCTION, CHECK_OK); |
| ParseFunctionFlags flags = ParseFunctionFlags::kIsAsync; |
| return ParseHoistableDeclaration(pos, flags, names, ok); |
| } |
| |
| Statement* Parser::ParseHoistableDeclaration( |
| int pos, ParseFunctionFlags flags, ZoneList<const AstRawString*>* names, |
| bool* ok) { |
| // FunctionDeclaration :: |
| // 'function' Identifier '(' FormalParameters ')' '{' FunctionBody '}' |
| // GeneratorDeclaration :: |
| // 'function' '*' Identifier '(' FormalParameters ')' '{' FunctionBody '}' |
| // |
| // 'function' and '*' (if present) have been consumed by the caller. |
| const bool is_generator = flags & ParseFunctionFlags::kIsGenerator; |
| const bool is_async = flags & ParseFunctionFlags::kIsAsync; |
| DCHECK(!is_generator || !is_async); |
| |
| bool is_strict_reserved = false; |
| const AstRawString* name = ParseIdentifierOrStrictReservedWord( |
| &is_strict_reserved, CHECK_OK); |
| |
| if (V8_UNLIKELY(is_async_function() && this->IsAwait(name))) { |
| ReportMessageAt(scanner()->location(), |
| MessageTemplate::kAwaitBindingIdentifier); |
| *ok = false; |
| return nullptr; |
| } |
| |
| FuncNameInferrer::State fni_state(fni_); |
| if (fni_ != NULL) fni_->PushEnclosingName(name); |
| FunctionLiteral* fun = ParseFunctionLiteral( |
| name, scanner()->location(), |
| is_strict_reserved ? kFunctionNameIsStrictReserved |
| : kFunctionNameValidityUnknown, |
| is_generator ? FunctionKind::kGeneratorFunction |
| : is_async ? FunctionKind::kAsyncFunction |
| : FunctionKind::kNormalFunction, |
| pos, FunctionLiteral::kDeclaration, language_mode(), CHECK_OK); |
| |
| // Even if we're not at the top-level of the global or a function |
| // scope, we treat it as such and introduce the function with its |
| // initial value upon entering the corresponding scope. |
| // In ES6, a function behaves as a lexical binding, except in |
| // a script scope, or the initial scope of eval or another function. |
| VariableMode mode = |
| (!scope_->is_declaration_scope() || scope_->is_module_scope()) ? LET |
| : VAR; |
| VariableProxy* proxy = NewUnresolved(name, mode); |
| Declaration* declaration = |
| factory()->NewFunctionDeclaration(proxy, mode, fun, scope_, pos); |
| Declare(declaration, DeclarationDescriptor::NORMAL, true, CHECK_OK); |
| if (names) names->Add(name, zone()); |
| EmptyStatement* empty = factory()->NewEmptyStatement(RelocInfo::kNoPosition); |
| if (is_sloppy(language_mode()) && !scope_->is_declaration_scope()) { |
| SloppyBlockFunctionStatement* delegate = |
| factory()->NewSloppyBlockFunctionStatement(empty, scope_); |
| scope_->DeclarationScope()->sloppy_block_function_map()->Declare(name, |
| delegate); |
| return delegate; |
| } |
| return empty; |
| } |
| |
| |
| Statement* Parser::ParseClassDeclaration(ZoneList<const AstRawString*>* names, |
| bool* ok) { |
| // ClassDeclaration :: |
| // 'class' Identifier ('extends' LeftHandExpression)? '{' ClassBody '}' |
| // |
| // 'class' is expected to be consumed by the caller. |
| // |
| // A ClassDeclaration |
| // |
| // class C { ... } |
| // |
| // has the same semantics as: |
| // |
| // let C = class C { ... }; |
| // |
| // so rewrite it as such. |
| |
| int pos = position(); |
| bool is_strict_reserved = false; |
| const AstRawString* name = |
| ParseIdentifierOrStrictReservedWord(&is_strict_reserved, CHECK_OK); |
| ClassLiteral* value = ParseClassLiteral(nullptr, name, scanner()->location(), |
| is_strict_reserved, pos, CHECK_OK); |
| |
| VariableProxy* proxy = NewUnresolved(name, LET); |
| Declaration* declaration = |
| factory()->NewVariableDeclaration(proxy, LET, scope_, pos); |
| Declare(declaration, DeclarationDescriptor::NORMAL, true, CHECK_OK); |
| proxy->var()->set_initializer_position(position()); |
| Assignment* assignment = |
| factory()->NewAssignment(Token::INIT, proxy, value, pos); |
| Statement* assignment_statement = |
| factory()->NewExpressionStatement(assignment, RelocInfo::kNoPosition); |
| if (names) names->Add(name, zone()); |
| return assignment_statement; |
| } |
| |
| |
| Block* Parser::ParseBlock(ZoneList<const AstRawString*>* labels, |
| bool finalize_block_scope, bool* ok) { |
| // The harmony mode uses block elements instead of statements. |
| // |
| // Block :: |
| // '{' StatementList '}' |
| |
| // Construct block expecting 16 statements. |
| Block* body = |
| factory()->NewBlock(labels, 16, false, RelocInfo::kNoPosition); |
| Scope* block_scope = NewScope(scope_, BLOCK_SCOPE); |
| |
| // Parse the statements and collect escaping labels. |
| Expect(Token::LBRACE, CHECK_OK); |
| block_scope->set_start_position(scanner()->location().beg_pos); |
| { BlockState block_state(&scope_, block_scope); |
| Target target(&this->target_stack_, body); |
| |
| while (peek() != Token::RBRACE) { |
| Statement* stat = ParseStatementListItem(CHECK_OK); |
| if (stat && !stat->IsEmpty()) { |
| body->statements()->Add(stat, zone()); |
| } |
| } |
| } |
| Expect(Token::RBRACE, CHECK_OK); |
| block_scope->set_end_position(scanner()->location().end_pos); |
| if (finalize_block_scope) { |
| block_scope = block_scope->FinalizeBlockScope(); |
| } |
| body->set_scope(block_scope); |
| return body; |
| } |
| |
| |
| Block* Parser::ParseBlock(ZoneList<const AstRawString*>* labels, bool* ok) { |
| return ParseBlock(labels, true, ok); |
| } |
| |
| |
| Block* Parser::DeclarationParsingResult::BuildInitializationBlock( |
| ZoneList<const AstRawString*>* names, bool* ok) { |
| Block* result = descriptor.parser->factory()->NewBlock( |
| NULL, 1, true, descriptor.declaration_pos); |
| for (auto declaration : declarations) { |
| PatternRewriter::DeclareAndInitializeVariables( |
| result, &descriptor, &declaration, names, CHECK_OK); |
| } |
| return result; |
| } |
| |
| |
| Block* Parser::ParseVariableStatement(VariableDeclarationContext var_context, |
| ZoneList<const AstRawString*>* names, |
| bool* ok) { |
| // VariableStatement :: |
| // VariableDeclarations ';' |
| |
| // The scope of a var/const declared variable anywhere inside a function |
| // is the entire function (ECMA-262, 3rd, 10.1.3, and 12.2). Thus we can |
| // transform a source-level var/const declaration into a (Function) |
| // Scope declaration, and rewrite the source-level initialization into an |
| // assignment statement. We use a block to collect multiple assignments. |
| // |
| // We mark the block as initializer block because we don't want the |
| // rewriter to add a '.result' assignment to such a block (to get compliant |
| // behavior for code such as print(eval('var x = 7')), and for cosmetic |
| // reasons when pretty-printing. Also, unless an assignment (initialization) |
| // is inside an initializer block, it is ignored. |
| |
| DeclarationParsingResult parsing_result; |
| Block* result = |
| ParseVariableDeclarations(var_context, &parsing_result, names, CHECK_OK); |
| ExpectSemicolon(CHECK_OK); |
| return result; |
| } |
| |
| Block* Parser::ParseVariableDeclarations( |
| VariableDeclarationContext var_context, |
| DeclarationParsingResult* parsing_result, |
| ZoneList<const AstRawString*>* names, bool* ok) { |
| // VariableDeclarations :: |
| // ('var' | 'const' | 'let') (Identifier ('=' AssignmentExpression)?)+[','] |
| // |
| // The ES6 Draft Rev3 specifies the following grammar for const declarations |
| // |
| // ConstDeclaration :: |
| // const ConstBinding (',' ConstBinding)* ';' |
| // ConstBinding :: |
| // Identifier '=' AssignmentExpression |
| // |
| // TODO(ES6): |
| // ConstBinding :: |
| // BindingPattern '=' AssignmentExpression |
| |
| parsing_result->descriptor.parser = this; |
| parsing_result->descriptor.declaration_kind = DeclarationDescriptor::NORMAL; |
| parsing_result->descriptor.declaration_pos = peek_position(); |
| parsing_result->descriptor.initialization_pos = peek_position(); |
| parsing_result->descriptor.mode = VAR; |
| |
| Block* init_block = nullptr; |
| if (var_context != kForStatement) { |
| init_block = factory()->NewBlock( |
| NULL, 1, true, parsing_result->descriptor.declaration_pos); |
| } |
| |
| if (peek() == Token::VAR) { |
| Consume(Token::VAR); |
| } else if (peek() == Token::CONST) { |
| Consume(Token::CONST); |
| DCHECK(var_context != kStatement); |
| parsing_result->descriptor.mode = CONST; |
| } else if (peek() == Token::LET) { |
| Consume(Token::LET); |
| DCHECK(var_context != kStatement); |
| parsing_result->descriptor.mode = LET; |
| } else { |
| UNREACHABLE(); // by current callers |
| } |
| |
| parsing_result->descriptor.scope = scope_; |
| parsing_result->descriptor.hoist_scope = nullptr; |
| |
| |
| bool first_declaration = true; |
| int bindings_start = peek_position(); |
| do { |
| FuncNameInferrer::State fni_state(fni_); |
| |
| // Parse name. |
| if (!first_declaration) Consume(Token::COMMA); |
| |
| Expression* pattern; |
| int decl_pos = peek_position(); |
| { |
| ExpressionClassifier pattern_classifier(this); |
| pattern = ParsePrimaryExpression(&pattern_classifier, CHECK_OK); |
| ValidateBindingPattern(&pattern_classifier, CHECK_OK); |
| if (IsLexicalVariableMode(parsing_result->descriptor.mode)) { |
| ValidateLetPattern(&pattern_classifier, CHECK_OK); |
| } |
| } |
| |
| Scanner::Location variable_loc = scanner()->location(); |
| const AstRawString* single_name = |
| pattern->IsVariableProxy() ? pattern->AsVariableProxy()->raw_name() |
| : nullptr; |
| if (single_name != nullptr) { |
| if (fni_ != NULL) fni_->PushVariableName(single_name); |
| } |
| |
| Expression* value = NULL; |
| int initializer_position = RelocInfo::kNoPosition; |
| if (Check(Token::ASSIGN)) { |
| ExpressionClassifier classifier(this); |
| value = ParseAssignmentExpression(var_context != kForStatement, |
| &classifier, CHECK_OK); |
| RewriteNonPattern(&classifier, CHECK_OK); |
| variable_loc.end_pos = scanner()->location().end_pos; |
| |
| if (!parsing_result->first_initializer_loc.IsValid()) { |
| parsing_result->first_initializer_loc = variable_loc; |
| } |
| |
| // Don't infer if it is "a = function(){...}();"-like expression. |
| if (single_name) { |
| if (fni_ != NULL && value->AsCall() == NULL && |
| value->AsCallNew() == NULL) { |
| fni_->Infer(); |
| } else { |
| fni_->RemoveLastFunction(); |
| } |
| } |
| |
| if (allow_harmony_function_name()) { |
| ParserTraits::SetFunctionNameFromIdentifierRef(value, pattern); |
| } |
| |
| // End position of the initializer is after the assignment expression. |
| initializer_position = scanner()->location().end_pos; |
| } else { |
| // Initializers may be either required or implied unless this is a |
| // for-in/of iteration variable. |
| if (var_context != kForStatement || !PeekInOrOf()) { |
| // ES6 'const' and binding patterns require initializers. |
| if (parsing_result->descriptor.mode == CONST || |
| !pattern->IsVariableProxy()) { |
| ParserTraits::ReportMessageAt( |
| Scanner::Location(decl_pos, scanner()->location().end_pos), |
| MessageTemplate::kDeclarationMissingInitializer, |
| !pattern->IsVariableProxy() ? "destructuring" : "const"); |
| *ok = false; |
| return nullptr; |
| } |
| |
| // 'let x' initializes 'x' to undefined. |
| if (parsing_result->descriptor.mode == LET) { |
| value = GetLiteralUndefined(position()); |
| } |
| } |
| |
| // End position of the initializer is after the variable. |
| initializer_position = position(); |
| } |
| |
| DeclarationParsingResult::Declaration decl(pattern, initializer_position, |
| value); |
| if (var_context == kForStatement) { |
| // Save the declaration for further handling in ParseForStatement. |
| parsing_result->declarations.Add(decl); |
| } else { |
| // Immediately declare the variable otherwise. This avoids O(N^2) |
| // behavior (where N is the number of variables in a single |
| // declaration) in the PatternRewriter having to do with removing |
| // and adding VariableProxies to the Scope (see bug 4699). |
| DCHECK_NOT_NULL(init_block); |
| PatternRewriter::DeclareAndInitializeVariables( |
| init_block, &parsing_result->descriptor, &decl, names, CHECK_OK); |
| } |
| first_declaration = false; |
| } while (peek() == Token::COMMA); |
| |
| parsing_result->bindings_loc = |
| Scanner::Location(bindings_start, scanner()->location().end_pos); |
| |
| DCHECK(*ok); |
| return init_block; |
| } |
| |
| |
| static bool ContainsLabel(ZoneList<const AstRawString*>* labels, |
| const AstRawString* label) { |
| DCHECK(label != NULL); |
| if (labels != NULL) { |
| for (int i = labels->length(); i-- > 0; ) { |
| if (labels->at(i) == label) { |
| return true; |
| } |
| } |
| } |
| return false; |
| } |
| |
| Statement* Parser::ParseFunctionDeclaration(bool* ok) { |
| Consume(Token::FUNCTION); |
| int pos = position(); |
| ParseFunctionFlags flags = ParseFunctionFlags::kIsNormal; |
| if (Check(Token::MUL)) { |
| flags |= ParseFunctionFlags::kIsGenerator; |
| if (allow_harmony_restrictive_declarations()) { |
| ParserTraits::ReportMessageAt(scanner()->location(), |
| MessageTemplate::kGeneratorInLegacyContext); |
| *ok = false; |
| return nullptr; |
| } |
| } |
| |
| return ParseHoistableDeclaration(pos, flags, nullptr, CHECK_OK); |
| } |
| |
| Statement* Parser::ParseExpressionOrLabelledStatement( |
| ZoneList<const AstRawString*>* labels, |
| AllowLabelledFunctionStatement allow_function, bool* ok) { |
| // ExpressionStatement | LabelledStatement :: |
| // Expression ';' |
| // Identifier ':' Statement |
| // |
| // ExpressionStatement[Yield] : |
| // [lookahead ∉ {{, function, class, let [}] Expression[In, ?Yield] ; |
| |
| int pos = peek_position(); |
| |
| switch (peek()) { |
| case Token::FUNCTION: |
| case Token::LBRACE: |
| UNREACHABLE(); // Always handled by the callers. |
| case Token::CLASS: |
| ReportUnexpectedToken(Next()); |
| *ok = false; |
| return nullptr; |
| |
| default: |
| break; |
| } |
| |
| bool starts_with_idenfifier = peek_any_identifier(); |
| Expression* expr = ParseExpression(true, CHECK_OK); |
| if (peek() == Token::COLON && starts_with_idenfifier && expr != NULL && |
| expr->AsVariableProxy() != NULL && |
| !expr->AsVariableProxy()->is_this()) { |
| // Expression is a single identifier, and not, e.g., a parenthesized |
| // identifier. |
| VariableProxy* var = expr->AsVariableProxy(); |
| const AstRawString* label = var->raw_name(); |
| // TODO(1240780): We don't check for redeclaration of labels |
| // during preparsing since keeping track of the set of active |
| // labels requires nontrivial changes to the way scopes are |
| // structured. However, these are probably changes we want to |
| // make later anyway so we should go back and fix this then. |
| if (ContainsLabel(labels, label) || TargetStackContainsLabel(label)) { |
| ParserTraits::ReportMessage(MessageTemplate::kLabelRedeclaration, label); |
| *ok = false; |
| return NULL; |
| } |
| if (labels == NULL) { |
| labels = new(zone()) ZoneList<const AstRawString*>(4, zone()); |
| } |
| labels->Add(label, zone()); |
| // Remove the "ghost" variable that turned out to be a label |
| // from the top scope. This way, we don't try to resolve it |
| // during the scope processing. |
| scope_->RemoveUnresolved(var); |
| Expect(Token::COLON, CHECK_OK); |
| // ES#sec-labelled-function-declarations Labelled Function Declarations |
| if (peek() == Token::FUNCTION && is_sloppy(language_mode())) { |
| if (allow_function == kAllowLabelledFunctionStatement) { |
| return ParseFunctionDeclaration(ok); |
| } else { |
| return ParseScopedStatement(labels, true, ok); |
| } |
| } |
|