Searched refs:BLOCK_SCOPE (Results 1 – 8 of 8) sorted by relevance
/external/v8/src/ast/ |
D | scopes.cc | 437 } else if (scope_info->scope_type() == BLOCK_SCOPE) { in DeserializeScopeChain() 440 DeclarationScope(zone, BLOCK_SCOPE, handle(scope_info, isolate)); in DeserializeScopeChain() 443 new (zone) Scope(zone, BLOCK_SCOPE, handle(scope_info, isolate)); in DeserializeScopeChain() 1608 case BLOCK_SCOPE: return is_declaration_scope ? "varblock" : "block"; in Header()
|
D | scopes.h | 353 bool is_block_scope() const { return scope_type_ == BLOCK_SCOPE; } in NON_EXPORTED_BASE()
|
/external/v8/src/ |
D | globals.h | 901 BLOCK_SCOPE, // The scope introduced by a new block. enumerator 917 case ScopeType::BLOCK_SCOPE:
|
/external/v8/src/parsing/ |
D | parser-base.h | 382 new (zone) Scope(zone, *scope_stack, BLOCK_SCOPE)) {} in BlockState() 623 return new (zone()) DeclarationScope(zone(), scope(), BLOCK_SCOPE); in NewVarblockScope() 4527 Scope* block_scope = NewScope(BLOCK_SCOPE); in ParseClassLiteral() 5733 Scope* inner_block_scope = NewScope(BLOCK_SCOPE); in ParseForStatement() 5958 Scope* inner_scope = NewScope(BLOCK_SCOPE); in ParseStandardForLoopWithLexicalDeclarations() 6074 Scope* inner_block_scope = NewScope(BLOCK_SCOPE); in ParseForAwaitStatement()
|
D | parser.cc | 3270 DCHECK_EQ(block_scope->scope_type(), BLOCK_SCOPE); in RewriteClassLiteral()
|
/external/v8/src/debug/ |
D | debug-scopes.cc | 319 case BLOCK_SCOPE: in Type()
|
/external/v8/src/objects/ |
D | scope-info.cc | 489 (scope_type() == BLOCK_SCOPE && CallsSloppyEval() && in ContextLength()
|
/external/v8/src/heap/ |
D | factory.cc | 1474 DCHECK_EQ(scope_info->scope_type(), BLOCK_SCOPE); in NewBlockContext()
|