HomeSort by relevance Sort by last modified time
    Searched refs:outer_scope_ (Results 1 - 2 of 2) sorted by null

  /external/v8/src/
scopes.h 204 Scope* outer_scope() const { return outer_scope_; }
296 Scope* outer_scope_; // the immediately enclosing outer scope, or NULL member in class:v8::internal::Scope
385 outer_scope_ = this;
scopes.cc 112 : outer_scope_(NULL),
140 : outer_scope_(outer_scope),
173 if (outer_scope_ != NULL) {
174 outer_scope_->inner_scopes_.Add(this);
175 scope_inside_with_ = outer_scope_->scope_inside_with_ || inside_with;
337 ASSERT(outer_scope_ == NULL); // eval or global scopes only
368 for (const Scope* scope = this; scope != NULL; scope = scope->outer_scope_) {
378 Scope* outer = outer_scope_;
389 for (Scope* s = this; s != scope; s = s->outer_scope_) {
579 } else if (outer_scope_ != NULL)
    [all...]

Completed in 59 milliseconds