Home | History | Annotate | Download | only in debug

Lines Matching defs:current_scope

2038   Scope* current_scope = scope;
2039 while (current_scope != NULL) {
2041 ZoneList<Variable*> stack_list(current_scope->StackLocalCount(), zone_);
2042 ZoneList<Variable*> context_list(current_scope->ContextLocalCount(), zone_);
2043 ZoneList<Variable*> globals_list(current_scope->ContextGlobalCount(),
2045 current_scope->CollectStackAndContextLocals(&stack_list, &context_list,
2062 current_scope = current_scope->outer_scope();