/third_party/node/deps/v8/src/ast/ |
H A D | variables.cc | 35 (mode() == VariableMode::kLet || mode() == VariableMode::kConst); in IsReplGlobal() 41 if (mode() == VariableMode::kLet || mode() == VariableMode::kConst) { in RewriteLocationForRepl()
|
H A D | variables.h | 235 bit_field_ = VariableModeField::update(bit_field_, VariableMode::kLet); in MakeParameterNonSimple()
|
H A D | scopes.cc | 1058 // This function handles VariableMode::kVar, VariableMode::kLet, and in DeclareLocal() 1064 mode == VariableMode::kVar || mode == VariableMode::kLet || in DeclareLocal() 2308 // can be skipped in the following situation: we have a VariableMode::kLet or in UpdateNeedsHoleCheck()
|
/third_party/node/deps/v8/src/common/ |
H A D | globals.h | 1232 kLet, // declared via 'let' declarations (first lexical) member in v8::internal::VariableMode 1282 case VariableMode::kLet: in VariableMode2String() 1320 STATIC_ASSERT(static_cast<uint8_t>(VariableMode::kLet) == in IsDeclaredVariableMode() 1321 0); // Implies that mode >= VariableMode::kLet. in IsDeclaredVariableMode() 1341 STATIC_ASSERT(static_cast<uint8_t>(VariableMode::kLet) == in IsLexicalVariableMode() 1342 0); // Implies that mode >= VariableMode::kLet. in IsLexicalVariableMode()
|
/third_party/skia/third_party/externals/tint/src/reader/wgsl/ |
H A D | token.h | 237 kLet, member in tint::reader::wgsl::Token::Type
|
H A D | token.cc | 228 case Token::Type::kLet: in TypeToName()
|
H A D | lexer.cc | 1036 return {Token::Type::kLet, source, "let"}; in check_keyword()
|
H A D | lexer_test.cc | 669 TokenData{"let", Token::Type::kLet},
|
H A 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/ |
H A D | execution.cc | 221 if (!(((mode == VariableMode::kLet && in NewScriptContext() 222 lookup.mode == VariableMode::kLet) || in NewScriptContext()
|
/third_party/node/deps/v8/src/parsing/ |
H A D | expression-scope.h | 790 has_simple_parameter_list_ ? VariableMode::kVar : VariableMode::kLet; in ValidateAndCreateScope()
|
H A D | preparser.h | 1186 DeclareVariableName(variable_name.string_, VariableMode::kLet, scope(), in DeclareClass() 1408 DeclareVariableName(name, VariableMode::kLet, scope(), &was_added); in CreateForEachStatementTDZ()
|
H A 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() member in v8::internal::ParseFunctionFlag::VariableMode
|
H A 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/ |
H A D | web-snapshot.cc | 1652 ScopeInfo::VariableModeBits::encode(VariableMode::kLet) | in DeserializeContexts()
|
/third_party/node/deps/v8/src/interpreter/ |
H A D | bytecode-generator.cc | 1586 DCHECK(variable->mode() == VariableMode::kLet || in VisitFunctionDeclaration()
|