Home
last modified time | relevance | path

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

/external/v8/src/parsing/
Dpreparser.cc833 Scope* with_scope = NewScope(scope_, WITH_SCOPE); in ParseWithStatement() local
834 BlockState block_state(&scope_, with_scope); in ParseWithStatement()
1063 Scope* with_scope = NewScope(scope_, WITH_SCOPE); in ParseTryStatement() local
1064 BlockState block_state(&scope_, with_scope); in ParseTryStatement()
Dparser.cc2814 Scope* with_scope = NewScope(scope_, WITH_SCOPE); in ParseWithStatement() local
2816 { BlockState block_state(&scope_, with_scope); in ParseWithStatement()
2817 with_scope->set_start_position(scanner()->peek_location().beg_pos); in ParseWithStatement()
2834 with_scope->set_end_position(scanner()->location().end_pos); in ParseWithStatement()
2836 return factory()->NewWithStatement(with_scope, expr, body, pos); in ParseWithStatement()
/external/v8/src/ast/
Dscopes.cc229 Scope* with_scope = new (zone) in DeserializeScopeChain() local
232 current_scope = with_scope; in DeserializeScopeChain()