Home
last modified time | relevance | path

Searched refs:non_locals (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/debug/
Ddebug-evaluate.cc161 Handle<StringSet> non_locals = it.GetNonLocals(); in ContextBuilder() local
163 non_locals); in ContextBuilder()
171 context_chain_element.whitelist = non_locals; in ContextBuilder()
245 Handle<JSFunction> local_function, Handle<StringSet> non_locals) { in MaterializeReceiver() argument
248 if (non_locals->Has(name)) { in MaterializeReceiver()
Ddebug-evaluate.h75 Handle<StringSet> non_locals);
/external/v8/src/ast/
Dscopes.cc807 Handle<StringSet> Scope::CollectNonLocals(Handle<StringSet> non_locals) { in CollectNonLocals() argument
815 non_locals = StringSet::Add(non_locals, name); in CollectNonLocals()
818 non_locals = inner_scopes_[i]->CollectNonLocals(non_locals); in CollectNonLocals()
820 return non_locals; in CollectNonLocals()
Dscopes.h554 Handle<StringSet> CollectNonLocals(Handle<StringSet> non_locals);