Home
last modified time | relevance | path

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

/external/v8/src/ast/
Dscopes.cc87 : inner_scopes_(4, zone), in Scope()
107 : inner_scopes_(4, zone), in Scope()
131 : inner_scopes_(1, zone), in Scope()
307 outer_scope_->inner_scopes_.Add(this, zone()); in Initialize()
356 for (int i = 0; i < inner_scopes_.length(); i++) { in FinalizeBlockScope()
357 outer_scope()->AddInnerScope(inner_scopes_[i]); in FinalizeBlockScope()
759 for (int i = 0; i < inner_scopes_.length(); i++) { in MaxNestedContextChainLength()
760 Scope* scope = inner_scopes_[i]; in MaxNestedContextChainLength()
817 for (int i = 0; i < inner_scopes_.length(); i++) { in CollectNonLocals()
818 non_locals = inner_scopes_[i]->CollectNonLocals(non_locals); in CollectNonLocals()
[all …]
Dscopes.h485 ZoneList<Scope*>* inner_scopes() { return &inner_scopes_; } in inner_scopes()
593 ZoneList<Scope*> inner_scopes_; // the immediately enclosed inner scopes variable
794 inner_scopes_.Add(inner_scope, zone_); in AddInnerScope()
801 for (int i = 0; i < inner_scopes_.length(); i++) { in RemoveInnerScope()
802 if (inner_scopes_[i] == inner_scope) { in RemoveInnerScope()
803 inner_scopes_.Remove(i); in RemoveInnerScope()