/external/v8/src/ |
scopes.h | 103 void Initialize(bool inside_with); 138 virtual VariableProxy* NewUnresolved(Handle<String> name, bool inside_with); 199 bool inside_with() const { return scope_inside_with_; } function in class:v8::internal::Scope 392 virtual VariableProxy* NewUnresolved(Handle<String> name, bool inside_with) {
|
scopes.cc | 171 void Scope::Initialize(bool inside_with) { 175 scope_inside_with_ = outer_scope_->scope_inside_with_ || inside_with; 177 scope_inside_with_ = inside_with; 251 VariableProxy* Scope::NewUnresolved(Handle<String> name, bool inside_with) { 255 VariableProxy* proxy = new VariableProxy(name, false, inside_with); 625 if (proxy->inside_with()) { [all...] |
ast.cc | 63 bool inside_with) 67 inside_with_(inside_with) {
|
parser.cc | 150 bool inside_with() const { return with_nesting_level_ > 0; } function in class:v8::internal::Parser 802 virtual Scope* NewScope(Scope* parent, Scope::Type type, bool inside_with); 856 virtual Scope* NewScope(Scope* parent, Scope::Type type, bool inside_with); [all...] |
ast.h | 952 bool inside_with() const { return inside_with_; } function in class:v8::internal::VariableProxy 967 VariableProxy(Handle<String> name, bool is_this, bool inside_with); [all...] |