Lines Matching full:outer_scope_
173 outer_scope_ = outer_scope;
307 if (outer_scope_ != NULL) {
308 outer_scope_->inner_scopes_.Add(this);
309 scope_inside_with_ = outer_scope_->scope_inside_with_ || is_with_scope();
359 for (int i = 0; i < outer_scope_->inner_scopes_.length(); i++) {
360 if (outer_scope_->inner_scopes_[i] == this) {
361 outer_scope_->inner_scopes_.Remove(i);
542 current = current->outer_scope_;
606 if (outer_scope_ != NULL) {
608 outer_scope_->outer_scope_calls_non_strict_eval() |
609 outer_scope_->calls_non_strict_eval();
633 for (const Scope* scope = this; scope != NULL; scope = scope->outer_scope_) {
643 Scope* outer = outer_scope_;
659 Scope* outer = outer_scope_;
666 outer = outer->outer_scope_;
674 for (Scope* s = this; s != scope; s = s->outer_scope_) {
921 } else if (outer_scope_ != NULL) {
922 var = outer_scope_->LookupRecursive(name, binding_kind, factory);