Home
last modified time | relevance | path

Searched refs:block_scope (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/debug/
Ddebug-scopes.cc543 Handle<JSObject> block_scope = in MaterializeBlockScope() local
549 frame_inspector_->MaterializeStackLocals(block_scope, scope_info); in MaterializeBlockScope()
558 context, block_scope); in MaterializeBlockScope()
562 handle(context->extension_object()), block_scope, in MaterializeBlockScope()
568 return block_scope; in MaterializeBlockScope()
/external/v8/src/parsing/
Dparser.cc2223 Scope* block_scope = NewScope(scope_, BLOCK_SCOPE); in ParseBlock() local
2227 block_scope->set_start_position(scanner()->location().beg_pos); in ParseBlock()
2228 { BlockState block_state(&scope_, block_scope); in ParseBlock()
2239 block_scope->set_end_position(scanner()->location().end_pos); in ParseBlock()
2241 block_scope = block_scope->FinalizeBlockScope(); in ParseBlock()
2243 body->set_scope(block_scope); in ParseBlock()
2822 Scope* block_scope = NewScope(scope_, BLOCK_SCOPE); in ParseWithStatement() local
2823 block_scope->set_start_position(scanner()->location().beg_pos); in ParseWithStatement()
2825 BlockState block_state(&scope_, block_scope); in ParseWithStatement()
2829 block_scope->set_end_position(scanner()->location().end_pos); in ParseWithStatement()
[all …]
Dpreparser.cc1277 Scope* block_scope = NewScope(scope_, BLOCK_SCOPE); in ParseDoExpression() local
1279 BlockState block_state(&scope_, block_scope); in ParseDoExpression()
/external/v8/src/full-codegen/
Dfull-codegen.h195 auto block_scope = statement()->AsBlock()->scope(); in Exit() local
196 if (block_scope != nullptr) { in Exit()
197 if (block_scope->ContextLocalCount() > 0) ++(*context_length); in Exit()