Home
last modified time | relevance | path

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

/external/v8/src/parsing/
Dpreparsed-scope-data.cc34 : data_(data), previous_scope_(data->current_scope_) { in ScopeScope()
35 data->current_scope_ = this; in ScopeScope()
47 data_->current_scope_ = previous_scope_; in ~ScopeScope()
Dpreparsed-scope-data.h49 ScopeScope* current_scope_ = nullptr; variable
/external/v8/src/interpreter/
Dbytecode-generator.h179 inline Scope* current_scope() const { return current_scope_; } in current_scope()
180 inline void set_current_scope(Scope* scope) { current_scope_ = scope; } in set_current_scope()
212 Scope* current_scope_; variable
Dbytecode-generator.cc625 current_scope_(info->scope()), in BytecodeGenerator()