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 354 Scope* inner_scope() const { return inner_scope_; }
452 if (inner_scope == inner_scope_) {
453 inner_scope_ = inner_scope_->sibling_;
456 for (Scope* scope = inner_scope_; scope != nullptr;
492 Scope* inner_scope_; // an inner scope of this scope member in class:v8::internal::Scope
603 inner_scope->sibling_ = inner_scope_;
604 inner_scope_ = inner_scope;
    [all...]
scopes.cc 155 top_inner_scope_(scope->inner_scope_),
318 inner_scope_ = nullptr;
357 for (Scope* inner = inner_scope_; inner != nullptr; inner = inner->sibling_) {
727 DCHECK_NULL(inner_scope_);
756 if (inner_scope_ != nullptr) {
757 Scope* scope = inner_scope_;
763 scope->sibling_ = outer_scope()->inner_scope_;
764 outer_scope()->inner_scope_ = inner_scope_;
765 inner_scope_ = nullptr
    [all...]

Completed in 174 milliseconds