Home
last modified time | relevance | path

Searched refs:current_scope_ (Results 1 – 6 of 6) sorted by relevance

/third_party/node/deps/v8/src/debug/
Ddebug-scopes.cc85 current_scope_ = start_scope_; in Restart()
86 DCHECK_NOT_NULL(current_scope_); in Restart()
212 current_scope_ = closure_scope_ = nullptr; in TryParseAndRetrieveScopes()
222 current_scope_ = closure_scope_ = nullptr; in TryParseAndRetrieveScopes()
295 current_scope_ = start_scope_; in TryParseAndRetrieveScopes()
304 current_scope_ = closure_scope_; in TryParseAndRetrieveScopes()
305 start_scope_ = current_scope_; in TryParseAndRetrieveScopes()
371 if (InInnerScope()) return current_scope_->start_position(); in start_position()
377 if (InInnerScope()) return current_scope_->end_position(); in end_position()
403 if (!current_scope_->NeedsContext()) return false; in NeedsAndHasContext()
[all …]
Ddebug-scopes.h126 Scope* current_scope_ = nullptr; variable
/third_party/node/deps/v8/src/interpreter/
Dbytecode-generator.h460 inline Scope* current_scope() const { return current_scope_; } in current_scope()
461 inline void set_current_scope(Scope* scope) { current_scope_ = scope; } in set_current_scope()
510 Scope* current_scope_; variable
Dbytecode-generator.cc913 current_scope_.emplace(generator_, scope_); in EnterScope()
926 current_scope_ = base::nullopt; in ExitScope()
936 base::Optional<CurrentScope> current_scope_; member in v8::internal::interpreter::BytecodeGenerator::MultipleEntryBlockContextScope
1147 current_scope_(info->scope()), in BytecodeGenerator()
/third_party/node/deps/v8/src/ast/
Dscopes.h1563 bool Done() const { return current_scope_ == nullptr; }
1571 return current_scope_->AsClassScope();
1577 Scope* current_scope_;
Dscopes.cc3085 : start_scope_(start), current_scope_(start) { in PrivateNameScopeIterator()
3093 Scope* inner = current_scope_; in Next()
3098 current_scope_ = scope; in Next()
3106 current_scope_ = nullptr; in Next()