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

  /external/v8/src/ast/
scopes.h 387 Scope* inner_scope() const { return inner_scope_; }
469 if (inner_scope == inner_scope_) {
470 inner_scope_ = inner_scope_->sibling_;
473 for (Scope* scope = inner_scope_; scope != nullptr;
514 Scope* inner_scope_; // an inner scope of this scope member in class:v8::internal::Scope
629 inner_scope->sibling_ = inner_scope_;
630 inner_scope_ = inner_scope;
    [all...]
scopes.cc 156 top_inner_scope_(scope->inner_scope_),
338 inner_scope_ = nullptr;
389 for (Scope* scope = inner_scope_; scope != nullptr; scope = scope->sibling_) {
795 DCHECK_NULL(inner_scope_);
824 if (inner_scope_ != nullptr) {
825 Scope* scope = inner_scope_;
831 scope->sibling_ = outer_scope()->inner_scope_;
832 outer_scope()->inner_scope_ = inner_scope_;
833 inner_scope_ = nullptr
    [all...]

Completed in 76 milliseconds