Home
last modified time | relevance | path

Searched refs:catch_scope (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/debug/
Ddebug-scopes.cc531 Handle<JSObject> catch_scope = in MaterializeCatchScope() local
533 JSObject::SetOwnPropertyIgnoreAttributes(catch_scope, name, thrown_object, in MaterializeCatchScope()
536 return catch_scope; in MaterializeCatchScope()
/external/v8/src/parsing/
Dparser.cc3002 Scope* catch_scope = NULL; in ParseTryStatement() local
3009 catch_scope = NewScope(scope_, CATCH_SCOPE); in ParseTryStatement()
3010 catch_scope->set_start_position(scanner()->location().beg_pos); in ParseTryStatement()
3024 catch_variable = catch_scope->DeclareLocal(name, VAR, kCreatedInitialized, in ParseTryStatement()
3030 BlockState block_state(&scope_, catch_scope); in ParseTryStatement()
3076 catch_scope->set_end_position(scanner()->location().end_pos); in ParseTryStatement()
3094 DCHECK(catch_scope != NULL && catch_variable != NULL); in ParseTryStatement()
3096 factory()->NewTryCatchStatement(try_block, catch_scope, catch_variable, in ParseTryStatement()
3106 DCHECK(catch_scope != NULL && catch_variable != NULL); in ParseTryStatement()
3107 result = factory()->NewTryCatchStatement(try_block, catch_scope, in ParseTryStatement()