Home | History | Annotate | Download | only in src

Lines Matching defs:current_scope

770     Scope* current_scope = scope;
771 while (current_scope != NULL) {
773 ZoneList<Variable*> stack_list(current_scope->StackLocalCount(), zone);
775 current_scope->ContextLocalCount(), zone);
776 current_scope->CollectStackAndContextLocals(&stack_list, &context_list);
796 current_scope = current_scope->outer_scope();