Home
last modified time | relevance | path

Searched refs:with_scope (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/parsing/
Dpreparser.cc780 Scope* with_scope = NewScope(scope_, WITH_SCOPE); in ParseWithStatement() local
781 BlockState block_state(&scope_, with_scope); in ParseWithStatement()
Dparser.cc2819 Scope* with_scope = NewScope(scope_, WITH_SCOPE); in ParseWithStatement() local
2821 { BlockState block_state(&scope_, with_scope); in ParseWithStatement()
2822 with_scope->set_start_position(scanner()->peek_location().beg_pos); in ParseWithStatement()
2824 with_scope->set_end_position(scanner()->location().end_pos); in ParseWithStatement()
2826 return factory()->NewWithStatement(with_scope, expr, body, pos); in ParseWithStatement()
/external/v8/src/ast/
Dscopes.cc217 Scope* with_scope = new (zone) in DeserializeScopeChain() local
220 current_scope = with_scope; in DeserializeScopeChain()