Searched refs:CheckConflictingVarDeclarations (Results 1 – 6 of 6) sorted by relevance
/external/v8/src/parsing/ |
D | parser.h | 592 V8_INLINE void CheckConflictingVarDeclarations(v8::internal::Scope* scope, 1013 void CheckConflictingVarDeclarations(Scope* scope, bool* ok); 1155 void ParserTraits::CheckConflictingVarDeclarations(v8::internal::Scope* scope, in CheckConflictingVarDeclarations() function 1157 parser_->CheckConflictingVarDeclarations(scope, ok); in CheckConflictingVarDeclarations()
|
D | preparser.h | 926 void CheckConflictingVarDeclarations(Scope* scope, bool* ok) {} in CheckConflictingVarDeclarations() function
|
D | parser.cc | 975 CheckConflictingVarDeclarations(scope_, &ok); in DoParseProgram() 4367 CheckConflictingVarDeclarations(scope, CHECK_OK); in ParseFunctionLiteral() 4638 CheckConflictingVarDeclarations(param_scope, CHECK_OK); in BuildParameterInitializationBlock() 4824 CheckConflictingVarDeclarations(inner_scope, CHECK_OK); in ParseEagerFunctionBody() 5076 void Parser::CheckConflictingVarDeclarations(Scope* scope, bool* ok) { in CheckConflictingVarDeclarations() function in v8::internal::Parser 5077 Declaration* decl = scope->CheckConflictingVarDeclarations(); in CheckConflictingVarDeclarations()
|
D | parser-base.h | 3412 this->CheckConflictingVarDeclarations(formal_parameters.scope, CHECK_OK); in ParseArrowFunctionLiteral()
|
/external/v8/src/ast/ |
D | scopes.h | 236 Declaration* CheckConflictingVarDeclarations();
|
D | scopes.cc | 587 Declaration* Scope::CheckConflictingVarDeclarations() { in CheckConflictingVarDeclarations() function in v8::internal::Scope
|