Home
last modified time | relevance | path

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

/external/v8/src/
Dglobals.h954 kLet, // declared via 'let' declarations (first lexical) enumerator
983 case VariableMode::kLet: in VariableMode2String()
1012 STATIC_ASSERT(static_cast<uint8_t>(VariableMode::kLet) == in IsDeclaredVariableMode()
1018 STATIC_ASSERT(static_cast<uint8_t>(VariableMode::kLet) == in IsLexicalVariableMode()
/external/v8/src/parsing/
Dpreparser.h1114 VariableMode::kLet);
1197 scope()->DeclareVariableName(variable_name.string_, VariableMode::kLet);
1447 scope()->DeclareVariableName(name, VariableMode::kLet);
Dparser.cc1440 Declaration* decl = DeclareVariable(variable_name, VariableMode::kLet, in DeclareClass()
1611 descriptor.mode = VariableMode::kLet; in RewriteCatchPattern()
1980 DeclareVariable(for_info.bound_names[i], VariableMode::kLet, in CreateForEachStatementTDZ()
2872 descriptor.mode = VariableMode::kLet; in BuildParameterInitializationBlock()
Dparser-base.h3899 parsing_result->descriptor.mode = VariableMode::kLet; in ParseVariableDeclarations()
3974 if (parsing_result->descriptor.mode == VariableMode::kLet) { in ParseVariableDeclarations()
4091 ? VariableMode::kLet in ParseHoistableDeclaration()
/external/v8/src/ast/
Dscopes.cc1088 mode == VariableMode::kVar || mode == VariableMode::kLet || in DeclareLocal()
/external/v8/src/interpreter/
Dbytecode-generator.cc1237 DCHECK(variable->mode() == VariableMode::kLet || in VisitFunctionDeclaration()
1273 DCHECK_EQ(variable->mode(), VariableMode::kLet); in VisitFunctionDeclaration()