Home
last modified time | relevance | path

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

/external/v8/src/ast/
Dscopes.cc95 : inner_scopes_(4, zone), in Scope()
118 : inner_scopes_(4, zone), in Scope()
144 : inner_scopes_(1, zone), in Scope()
325 outer_scope_->inner_scopes_.Add(this, zone()); in Initialize()
374 for (int i = 0; i < inner_scopes_.length(); i++) { in FinalizeBlockScope()
375 outer_scope()->AddInnerScope(inner_scopes_[i]); in FinalizeBlockScope()
794 for (int i = 0; i < inner_scopes_.length(); i++) { in MaxNestedContextChainLength()
795 Scope* scope = inner_scopes_[i]; in MaxNestedContextChainLength()
847 for (int i = 0; i < inner_scopes_.length(); i++) { in GetNestedScopeChain()
848 Scope* scope = inner_scopes_[i]; in GetNestedScopeChain()
[all …]
Dscopes.h481 ZoneList<Scope*>* inner_scopes() { return &inner_scopes_; } in inner_scopes()
608 ZoneList<Scope*> inner_scopes_; // the immediately enclosed inner scopes variable
817 inner_scopes_.Add(inner_scope, zone_); in AddInnerScope()
824 for (int i = 0; i < inner_scopes_.length(); i++) { in RemoveInnerScope()
825 if (inner_scopes_[i] == inner_scope) { in RemoveInnerScope()
826 inner_scopes_.Remove(i); in RemoveInnerScope()