Home
last modified time | relevance | path

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

/external/v8/src/parsing/
Dparser.cc1999 Scope* catch_scope = scope(); in DesugarBindingInForEachStatement() local
2000 while (catch_scope != nullptr && !catch_scope->is_declaration_scope()) { in DesugarBindingInForEachStatement()
2001 if (catch_scope->is_catch_scope()) { in DesugarBindingInForEachStatement()
2002 auto name = catch_scope->catch_variable_name(); in DesugarBindingInForEachStatement()
2012 catch_scope = catch_scope->outer_scope(); in DesugarBindingInForEachStatement()
3021 Scope* catch_scope = NewScope(CATCH_SCOPE); in BuildRejectPromiseOnException() local
3022 catch_scope->set_is_hidden(); in BuildRejectPromiseOnException()
3024 catch_scope->DeclareLocal(ast_value_factory()->dot_catch_string(), VAR); in BuildRejectPromiseOnException()
3034 factory()->NewTryCatchStatementForAsyncAwait(inner_block, catch_scope, in BuildRejectPromiseOnException()
4530 Scope* catch_scope = NewScope(CATCH_SCOPE); in RewriteYieldStar() local
[all …]
/external/v8/src/debug/
Ddebug-scopes.cc560 Handle<JSObject> catch_scope = in MaterializeCatchScope() local
562 JSObject::SetOwnPropertyIgnoreAttributes(catch_scope, name, thrown_object, in MaterializeCatchScope()
565 return catch_scope; in MaterializeCatchScope()