Searched refs:catch_scope (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/v8/src/
H A Dparser.cc2478 Scope* catch_scope = NULL; local
2486 catch_scope = NewScope(top_scope_, CATCH_SCOPE);
2487 catch_scope->set_start_position(scanner().location().beg_pos);
2502 catch_scope->DeclareLocal(name, mode, kCreatedInitialized);
2504 BlockState block_state(this, catch_scope);
2509 catch_scope->set_end_position(scanner().location().end_pos);
2526 ASSERT(catch_scope != NULL && catch_variable != NULL);
2529 index, try_block, catch_scope, catch_variable, catch_block,
2540 ASSERT(catch_scope != NULL && catch_variable != NULL);
2543 index, try_block, catch_scope, catch_variabl
[all...]
H A Druntime.cc11717 Handle<JSObject> catch_scope =
11721 Runtime::SetObjectProperty(isolate, catch_scope, name, thrown_object,
11725 return catch_scope;
/external/v8/src/
H A Dparser.cc2703 Scope* catch_scope = NULL; local
2711 catch_scope = NewScope(top_scope_, CATCH_SCOPE);
2712 catch_scope->set_start_position(scanner().location().beg_pos);
2727 catch_scope->DeclareLocal(name, mode, kCreatedInitialized);
2729 BlockState block_state(this, catch_scope);
2734 catch_scope->set_end_position(scanner().location().end_pos);
2751 ASSERT(catch_scope != NULL && catch_variable != NULL);
2754 index, try_block, catch_scope, catch_variable, catch_block);
2764 ASSERT(catch_scope != NULL && catch_variable != NULL);
2767 index, try_block, catch_scope, catch_variabl
[all...]
H A Druntime.cc10851 Handle<JSObject> catch_scope =
10855 SetProperty(catch_scope, name, thrown_object, NONE, kNonStrictMode),
10857 return catch_scope;

Completed in 148 milliseconds