Searched refs:kLet (Results 1 – 17 of 17) sorted by relevance
/third_party/node/deps/v8/src/ast/ |
D | variables.cc | 35 (mode() == VariableMode::kLet || mode() == VariableMode::kConst); in IsReplGlobal() 41 if (mode() == VariableMode::kLet || mode() == VariableMode::kConst) { in RewriteLocationForRepl()
|
D | variables.h | 235 bit_field_ = VariableModeField::update(bit_field_, VariableMode::kLet); in MakeParameterNonSimple()
|
D | scopes.cc | 1064 mode == VariableMode::kVar || mode == VariableMode::kLet || in DeclareLocal()
|
/third_party/node/deps/v8/src/common/ |
D | globals.h | 1232 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/ |
D | token.h | 237 kLet, enumerator
|
D | token.cc | 228 case Token::Type::kLet: in TypeToName()
|
D | lexer_test.cc | 669 TokenData{"let", Token::Type::kLet},
|
D | lexer.cc | 1036 return {Token::Type::kLet, source, "let"}; in check_keyword()
|
D | parser_impl.cc | 507 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/ |
D | execution.cc | 221 if (!(((mode == VariableMode::kLet && in NewScriptContext() 222 lookup.mode == VariableMode::kLet) || in NewScriptContext()
|
/third_party/node/deps/v8/src/objects/ |
D | scope-info.tq | 31 kLet,
|
/third_party/node/deps/v8/src/parsing/ |
D | preparser.h | 1186 DeclareVariableName(variable_name.string_, VariableMode::kLet, scope(), 1408 DeclareVariableName(name, VariableMode::kLet, scope(), &was_added);
|
D | expression-scope.h | 790 has_simple_parameter_list_ ? VariableMode::kVar : VariableMode::kLet; in ValidateAndCreateScope()
|
D | parser-base.h | 3981 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()
|
D | parser.cc | 1890 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/ |
D | web-snapshot.cc | 1652 ScopeInfo::VariableModeBits::encode(VariableMode::kLet) | in DeserializeContexts()
|
/third_party/node/deps/v8/src/interpreter/ |
D | bytecode-generator.cc | 1586 DCHECK(variable->mode() == VariableMode::kLet || in VisitFunctionDeclaration()
|