Home
last modified time | relevance | path

Searched refs:outer_scope_ (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/ast/
Dscopes.cc134 outer_scope_(nullptr), in Scope()
142 outer_scope_(outer_scope), in Scope()
150 outer_scope_->AddInnerScope(this); in Scope()
154 : outer_scope_(scope), in Snapshot()
183 asm_function_ = outer_scope_->IsAsmModule(); in DeclarationScope()
244 outer_scope_(nullptr), in Scope()
272 outer_scope_(nullptr), in Scope()
305 outer_scope_ ? outer_scope_->GetDeclarationScope() : nullptr; in SetDefaults()
503 if (outer_scope_->LookupLocal(name) != nullptr) { in HoistSloppyBlockFunctions()
758 scope->outer_scope_ = outer_scope(); in FinalizeBlockScope()
[all …]
Dscopes.h119 Scope* outer_scope_; in NON_EXPORTED_BASE()
358 Scope* outer_scope() const { return outer_scope_; } in NON_EXPORTED_BASE()
491 Scope* outer_scope_; // the immediately enclosing outer scope, or NULL in NON_EXPORTED_BASE() local
605 inner_scope->outer_scope_ = this; in NON_EXPORTED_BASE()
/external/v8/src/interpreter/
Dbytecode-generator.cc600 : generator_(generator), outer_scope_(generator->current_scope()) { in CurrentScope()
606 if (outer_scope_ != generator_->current_scope()) { in ~CurrentScope()
607 generator_->set_current_scope(outer_scope_); in ~CurrentScope()
613 Scope* outer_scope_; member in v8::internal::interpreter::BytecodeGenerator::CurrentScope
/external/v8/src/parsing/
Dparser-base.h302 : scope_stack_(scope_stack), outer_scope_(*scope_stack) { in BlockState()
310 ~BlockState() { *scope_stack_ = outer_scope_; } in ~BlockState()
314 Scope* const outer_scope_; variable