Home
last modified time | relevance | path

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

/external/v8/src/ast/
Dscopes.cc155 top_inner_scope_(scope->inner_scope_), in Snapshot()
318 inner_scope_ = nullptr; in SetDefaults()
357 for (Scope* inner = inner_scope_; inner != nullptr; inner = inner->sibling_) { in set_asm_module()
727 DCHECK_NULL(inner_scope_); in HasBeenRemoved()
756 if (inner_scope_ != nullptr) { in FinalizeBlockScope()
757 Scope* scope = inner_scope_; in FinalizeBlockScope()
763 scope->sibling_ = outer_scope()->inner_scope_; in FinalizeBlockScope()
764 outer_scope()->inner_scope_ = inner_scope_; in FinalizeBlockScope()
765 inner_scope_ = nullptr; in FinalizeBlockScope()
812 DCHECK_EQ(new_parent, outer_scope_->inner_scope_); in Reparent()
[all …]
Dscopes.h354 Scope* inner_scope() const { return inner_scope_; } in NON_EXPORTED_BASE()
452 if (inner_scope == inner_scope_) { in NON_EXPORTED_BASE()
453 inner_scope_ = inner_scope_->sibling_; in NON_EXPORTED_BASE()
456 for (Scope* scope = inner_scope_; scope != nullptr; in NON_EXPORTED_BASE()
492 Scope* inner_scope_; // an inner scope of this scope in NON_EXPORTED_BASE() local
603 inner_scope->sibling_ = inner_scope_; in NON_EXPORTED_BASE()
604 inner_scope_ = inner_scope; in NON_EXPORTED_BASE()