Home | History | Annotate | Download | only in ast

Lines Matching defs:inner_scope

351   // inner_scope() and sibling() together implement the inner scope list of a
354 Scope* inner_scope() const { return inner_scope_; }
450 bool RemoveInnerScope(Scope* inner_scope) {
451 DCHECK_NOT_NULL(inner_scope);
452 if (inner_scope == inner_scope_) {
458 if (scope->sibling_ == inner_scope) {
602 void AddInnerScope(Scope* inner_scope) {
603 inner_scope->sibling_ = inner_scope_;
604 inner_scope_ = inner_scope;
605 inner_scope->outer_scope_ = this;