Lines Matching refs:current_scope_
85 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()
277 DCHECK_NOT_NULL(current_scope_); in Next()
279 if (current_scope_->NeedsContext()) { in Next()
283 DCHECK_IMPLIES(InInnerScope(), current_scope_->outer_scope() != nullptr); in Next()
284 current_scope_ = current_scope_->outer_scope(); in Next()
286 } while (current_scope_->is_hidden()); in Next()
297 switch (current_scope_->scope_type()) { in Type()
299 DCHECK_IMPLIES(current_scope_->NeedsContext(), in Type()
303 DCHECK_IMPLIES(current_scope_->NeedsContext(), in Type()
308 current_scope_->NeedsContext(), in Type()
313 current_scope_->NeedsContext(), in Type()
320 DCHECK_IMPLIES(current_scope_->NeedsContext(), in Type()
324 DCHECK_IMPLIES(current_scope_->NeedsContext(), in Type()
426 if (!current_scope_->NeedsContext()) return false; in SetVariableValue()
457 if (current_scope_->NeedsContext()) { in DebugPrint()
538 current_scope_ = current; in RetrieveScopeChain()
601 for (Variable* var : *current_scope_->locals()) { in VisitLocals()
664 if (current_scope_->is_declaration_scope() && in VisitLocals()
665 current_scope_->AsDeclarationScope()->arguments() == var) { in VisitLocals()
774 for (Variable* var : *current_scope_->locals()) { in SetLocalVariableValue()