Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/ast/
Dvariables.cc35 (mode() == VariableMode::kLet || mode() == VariableMode::kConst); in IsReplGlobal()
41 if (mode() == VariableMode::kLet || mode() == VariableMode::kConst) { in RewriteLocationForRepl()
Dvariables.h235 bit_field_ = VariableModeField::update(bit_field_, VariableMode::kLet); in MakeParameterNonSimple()
Dscopes.cc1064 mode == VariableMode::kVar || mode == VariableMode::kLet || in DeclareLocal()
/third_party/node/deps/v8/src/common/
Dglobals.h1232 kLet, // declared via 'let' declarations (first lexical) enumerator
1282 case VariableMode::kLet: in VariableMode2String()
1320 STATIC_ASSERT(static_cast<uint8_t>(VariableMode::kLet) == in IsDeclaredVariableMode()
1341 STATIC_ASSERT(static_cast<uint8_t>(VariableMode::kLet) == in IsLexicalVariableMode()
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
Dtoken.h237 kLet, enumerator
Dtoken.cc228 case Token::Type::kLet: in TypeToName()
Dlexer_test.cc669 TokenData{"let", Token::Type::kLet},
Dlexer.cc1036 return {Token::Type::kLet, source, "let"}; in check_keyword()
Dparser_impl.cc507 if (!match(Token::Type::kLet)) { in global_constant_decl()
1727 if (match(Token::Type::kLet)) { in variable_stmt()
/third_party/node/deps/v8/src/execution/
Dexecution.cc221 if (!(((mode == VariableMode::kLet && in NewScriptContext()
222 lookup.mode == VariableMode::kLet) || in NewScriptContext()
/third_party/node/deps/v8/src/objects/
Dscope-info.tq31 kLet,
/third_party/node/deps/v8/src/parsing/
Dpreparser.h1186 DeclareVariableName(variable_name.string_, VariableMode::kLet, scope(),
1408 DeclareVariableName(name, VariableMode::kLet, scope(), &was_added);
Dexpression-scope.h790 has_simple_parameter_list_ ? VariableMode::kVar : VariableMode::kLet; in ValidateAndCreateScope()
Dparser-base.h3981 parsing_result->descriptor.mode = VariableMode::kLet; in ParseVariableDeclarations()
4017 parsing_result->descriptor.mode == VariableMode::kLet) { in ParseVariableDeclarations()
4077 parsing_result->descriptor.mode == VariableMode::kLet); in ParseVariableDeclarations()
4092 if (parsing_result->descriptor.mode == VariableMode::kLet) { in ParseVariableDeclarations()
4207 ? VariableMode::kLet in ParseHoistableDeclaration()
5924 impl(), VariableMode::kLet, nullptr); in ParseTryStatement()
Dparser.cc1890 DeclareBoundVariable(variable_name, VariableMode::kLet, class_token_pos); in DeclareClass()
2262 bound_name, VariableMode::kLet, kNoSourcePosition); in CreateForEachStatementTDZ()
/third_party/node/deps/v8/src/web-snapshot/
Dweb-snapshot.cc1652 ScopeInfo::VariableModeBits::encode(VariableMode::kLet) | in DeserializeContexts()
/third_party/node/deps/v8/src/interpreter/
Dbytecode-generator.cc1586 DCHECK(variable->mode() == VariableMode::kLet || in VisitFunctionDeclaration()