Home
last modified time | relevance | path

Searched refs:BLOCK_SCOPE (Results 1 – 8 of 8) sorted by relevance

/external/v8/src/ast/
Dscopes.cc437 } 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()
Dscopes.h353 bool is_block_scope() const { return scope_type_ == BLOCK_SCOPE; } in NON_EXPORTED_BASE()
/external/v8/src/
Dglobals.h901 BLOCK_SCOPE, // The scope introduced by a new block. enumerator
917 case ScopeType::BLOCK_SCOPE:
/external/v8/src/parsing/
Dparser-base.h382 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()
Dparser.cc3270 DCHECK_EQ(block_scope->scope_type(), BLOCK_SCOPE); in RewriteClassLiteral()
/external/v8/src/debug/
Ddebug-scopes.cc319 case BLOCK_SCOPE: in Type()
/external/v8/src/objects/
Dscope-info.cc489 (scope_type() == BLOCK_SCOPE && CallsSloppyEval() && in ContextLength()
/external/v8/src/heap/
Dfactory.cc1474 DCHECK_EQ(scope_info->scope_type(), BLOCK_SCOPE); in NewBlockContext()