Lines Matching full:outer_scope
854 Scope* outer_scope = scope->outer_scope();
855 if (outer_scope == NULL) {
859 ZoneList<Variable*> stack_list(outer_scope->StackLocalCount());
860 ZoneList<Variable*> context_list(outer_scope->ContextLocalCount());
861 outer_scope->CollectStackAndContextLocals(&stack_list, &context_list);
880 outer_scope = outer_scope->outer_scope();
881 } while (outer_scope != NULL);