• Home
  • Raw
  • Download

Lines Matching refs:cache_scope

2067                         Scope* outer_scope_end, Scope* cache_scope,  in Lookup()  argument
2074 Variable* var = cache_scope->variables_.Lookup(proxy->raw_name()); in Lookup()
2090 scope == cache_scope); in Lookup()
2091 return cache_scope->NonLocal(proxy->raw_name(), VariableMode::kDynamic); in Lookup()
2110 external_cache ? cache_scope : scope); in Lookup()
2139 return LookupWith(proxy, scope, outer_scope_end, cache_scope, in Lookup()
2145 return LookupSloppyEval(proxy, scope, outer_scope_end, cache_scope, in Lookup()
2154 DCHECK_NULL(cache_scope); in Lookup()
2155 cache_scope = scope->GetNonEvalDeclarationScope(); in Lookup()
2157 cache_scope); in Lookup()
2171 mode == kDeserializedScope ? cache_scope : scope); in Lookup()
2176 Scope* cache_scope, bool force_context_allocation);
2179 Scope* cache_scope, bool force_context_allocation);
2182 Scope* outer_scope_end, Scope* cache_scope, in LookupWith() argument
2191 outer_scope_end, cache_scope); in LookupWith()
2209 DCHECK_NOT_NULL(cache_scope); in LookupWith()
2210 cache_scope->variables_.Remove(var); in LookupWith()
2211 target_scope = cache_scope; in LookupWith()
2222 Scope* outer_scope_end, Scope* cache_scope, in LookupSloppyEval() argument
2231 Scope* entry_cache = cache_scope == nullptr in LookupSloppyEval()
2233 : cache_scope; in LookupSloppyEval()
2246 DCHECK_IMPLIES(!scope->scope_info_.is_null(), cache_scope != nullptr); in LookupSloppyEval()
2247 cache_scope = scope; in LookupSloppyEval()
2258 Scope* target = cache_scope == nullptr ? scope : cache_scope; in LookupSloppyEval()
2265 if (cache_scope != nullptr) cache_scope->variables_.Remove(invalidated); in LookupSloppyEval()
2267 Scope* target = cache_scope == nullptr ? scope : cache_scope; in LookupSloppyEval()