Home
last modified time | relevance | path

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

/external/v8/src/debug/
Ddebug-scopes.cc85 current_scope_ = start_scope_; in Restart()
86 DCHECK_NOT_NULL(current_scope_); in Restart()
95 current_scope_ = closure_scope_ = nullptr; in TryParseAndRetrieveScopes()
155 current_scope_ = closure_scope_; in TryParseAndRetrieveScopes()
156 start_scope_ = current_scope_; in TryParseAndRetrieveScopes()
221 if (InInnerScope()) return current_scope_->start_position(); in start_position()
227 if (InInnerScope()) return current_scope_->end_position(); in end_position()
248 return !InInnerScope() || current_scope_->NeedsContext(); in HasContext()
265 if (current_scope_ == closure_scope_) function_ = Handle<JSFunction>(); in Next()
268 DCHECK_IMPLIES(InInnerScope(), current_scope_->is_script_scope()); in Next()
[all …]
Ddebug-scopes.h116 Scope* current_scope_ = nullptr; variable
/external/v8/src/interpreter/
Dbytecode-generator.h306 inline Scope* current_scope() const { return current_scope_; } in current_scope()
307 inline void set_current_scope(Scope* scope) { current_scope_ = scope; } in set_current_scope()
350 Scope* current_scope_; variable
Dbytecode-generator.cc895 current_scope_(info->scope()), in BytecodeGenerator()