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

  /external/v8/src/ast/
scopes.h 388 Scope* sibling() const { return sibling_; }
470 inner_scope_ = inner_scope_->sibling_;
474 scope = scope->sibling_) {
475 if (scope->sibling_ == inner_scope) {
476 scope->sibling_ = scope->sibling_->sibling_;
515 Scope* sibling_; // a sibling inner scope of the outer scope of this scope. member in class:v8::internal::Scope
629 inner_scope->sibling_ = inner_scope_;
    [all...]
scopes.cc 339 sibling_ = nullptr;
389 for (Scope* scope = inner_scope_; scope != nullptr; scope = scope->sibling_) {
827 while (scope->sibling_ != nullptr) {
828 scope = scope->sibling_;
831 scope->sibling_ = outer_scope()->inner_scope_;
860 sibling_ = this;
892 Scope* inner_scope = new_parent->sibling_;
    [all...]

Completed in 74 milliseconds