Searched refs:catch_scope (Results 1 – 2 of 2) sorted by relevance
/external/v8/src/ |
D | parser.cc | 2703 Scope* catch_scope = NULL; in ParseTryStatement() local 2711 catch_scope = NewScope(top_scope_, CATCH_SCOPE); in ParseTryStatement() 2712 catch_scope->set_start_position(scanner().location().beg_pos); in ParseTryStatement() 2727 catch_scope->DeclareLocal(name, mode, kCreatedInitialized); in ParseTryStatement() 2729 BlockState block_state(this, catch_scope); in ParseTryStatement() 2734 catch_scope->set_end_position(scanner().location().end_pos); in ParseTryStatement() 2751 ASSERT(catch_scope != NULL && catch_variable != NULL); in ParseTryStatement() 2754 index, try_block, catch_scope, catch_variable, catch_block); in ParseTryStatement() 2764 ASSERT(catch_scope != NULL && catch_variable != NULL); in ParseTryStatement() 2767 index, try_block, catch_scope, catch_variable, catch_block); in ParseTryStatement()
|
D | runtime.cc | 10851 Handle<JSObject> catch_scope = in MaterializeCatchScope() local 10855 SetProperty(catch_scope, name, thrown_object, NONE, kNonStrictMode), in MaterializeCatchScope() 10857 return catch_scope; in MaterializeCatchScope()
|