Lines Matching refs:info_
42 ScopeIterator::~ScopeIterator() { delete info_; } in ~ScopeIterator()
122 info_ = new ParseInfo(isolate_, shared_info); in TryParseAndRetrieveScopes()
126 info_ = new ParseInfo(isolate_, script); in TryParseAndRetrieveScopes()
128 info_->set_eval(); in TryParseAndRetrieveScopes()
130 info_->set_outer_scope_info(handle(context_->scope_info(), isolate_)); in TryParseAndRetrieveScopes()
134 info_->set_language_mode(shared_info->language_mode()); in TryParseAndRetrieveScopes()
136 DCHECK(info_->is_module()); in TryParseAndRetrieveScopes()
142 if (parsing::ParseAny(info_, shared_info, isolate_) && in TryParseAndRetrieveScopes()
143 Rewriter::Rewrite(info_)) { in TryParseAndRetrieveScopes()
144 info_->ast_value_factory()->Internalize(isolate_); in TryParseAndRetrieveScopes()
145 closure_scope_ = info_->literal()->scope(); in TryParseAndRetrieveScopes()
149 non_locals_ = info_->literal()->scope()->CollectNonLocals( in TryParseAndRetrieveScopes()
150 isolate_, info_, StringSet::New(isolate_)); in TryParseAndRetrieveScopes()
153 CHECK(DeclarationScope::Analyze(info_)); in TryParseAndRetrieveScopes()