Home
last modified time | relevance | path

Searched refs:CheckConflictingVarDeclarations (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/parsing/
Dparser.h592 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()
Dpreparser.h926 void CheckConflictingVarDeclarations(Scope* scope, bool* ok) {} in CheckConflictingVarDeclarations() function
Dparser.cc975 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()
Dparser-base.h3412 this->CheckConflictingVarDeclarations(formal_parameters.scope, CHECK_OK); in ParseArrowFunctionLiteral()
/external/v8/src/ast/
Dscopes.h236 Declaration* CheckConflictingVarDeclarations();
Dscopes.cc587 Declaration* Scope::CheckConflictingVarDeclarations() { in CheckConflictingVarDeclarations() function in v8::internal::Scope