Searched refs:catch_scope (Results 1 – 2 of 2) sorted by relevance
/external/chromium_org/v8/src/ |
D | parser.cc | 2644 Scope* catch_scope = NULL; in ParseTryStatement() local 2652 catch_scope = NewScope(scope_, CATCH_SCOPE); in ParseTryStatement() 2653 catch_scope->set_start_position(scanner()->location().beg_pos); in ParseTryStatement() 2662 catch_scope->DeclareLocal(name, mode, kCreatedInitialized); in ParseTryStatement() 2664 BlockState block_state(&scope_, catch_scope); in ParseTryStatement() 2667 catch_scope->set_end_position(scanner()->location().end_pos); in ParseTryStatement() 2685 ASSERT(catch_scope != NULL && catch_variable != NULL); in ParseTryStatement() 2688 index, try_block, catch_scope, catch_variable, catch_block, in ParseTryStatement() 2699 ASSERT(catch_scope != NULL && catch_variable != NULL); in ParseTryStatement() 2702 index, try_block, catch_scope, catch_variable, catch_block, pos); in ParseTryStatement()
|
D | runtime.cc | 11829 Handle<JSObject> catch_scope = in MaterializeCatchScope() local 11833 Runtime::SetObjectProperty(isolate, catch_scope, name, thrown_object, in MaterializeCatchScope() 11836 return catch_scope; in MaterializeCatchScope()
|