Lines Matching refs:closure_scope
18 Processor(uintptr_t stack_limit, DeclarationScope* closure_scope, in Processor() argument
26 closure_scope_(closure_scope), in Processor()
28 DCHECK_EQ(closure_scope, closure_scope->GetClosureScope()); in Processor()
32 Processor(Parser* parser, DeclarationScope* closure_scope, Variable* result, in Processor() argument
40 closure_scope_(closure_scope), in Processor()
42 DCHECK_EQ(closure_scope, closure_scope->GetClosureScope()); in Processor()
50 DeclarationScope* closure_scope() { return closure_scope_; } in closure_scope() function in v8::internal::Processor
252 CHECK_NOT_NULL(closure_scope()); in VisitTryFinallyStatement()
253 Variable* backup = closure_scope()->NewTemporary( in VisitTryFinallyStatement()
408 bool Rewriter::Rewrite(Parser* parser, DeclarationScope* closure_scope, in Rewrite() argument
415 DCHECK_EQ(closure_scope, closure_scope->GetClosureScope()); in Rewrite()
417 block->scope()->GetClosureScope() == closure_scope); in Rewrite()
423 Processor processor(parser, closure_scope, result_var, factory); in Rewrite()