Home
last modified time | relevance | path

Searched refs:outer_scope_ (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/ast/
Dscopes.cc172 outer_scope_ = outer_scope; in SetDefaults()
324 if (outer_scope_ != NULL) { in Initialize()
325 outer_scope_->inner_scopes_.Add(this, zone()); in Initialize()
326 scope_inside_with_ = outer_scope_->scope_inside_with_ || is_with_scope(); in Initialize()
383 PropagateUsageFlagsToScope(outer_scope_); in FinalizeBlockScope()
391 DCHECK_NOT_NULL(outer_scope_); in ReplaceOuterScope()
394 DCHECK(!outer_scope_->already_resolved()); in ReplaceOuterScope()
395 outer_scope_->RemoveInnerScope(this); in ReplaceOuterScope()
397 outer_scope_ = outer; in ReplaceOuterScope()
634 if (IsLexicalVariableMode(decl->mode())) current = current->outer_scope_; in CheckConflictingVarDeclarations()
[all …]
Dscopes.h484 Scope* outer_scope() const { return outer_scope_; } in outer_scope()
607 Scope* outer_scope_; // the immediately enclosing outer scope, or NULL
818 inner_scope->outer_scope_ = this; in AddInnerScope()
/external/v8/src/parsing/
Dparser-base.h169 : scope_stack_(scope_stack), outer_scope_(*scope_stack) { in BlockState()
172 ~BlockState() { *scope_stack_ = outer_scope_; } in ~BlockState()
176 Scope* outer_scope_; variable
276 Scope* outer_scope_; variable
952 outer_scope_(*scope_stack), in FunctionState()
961 *scope_stack_ = outer_scope_; in ~FunctionState()