Home | History | Annotate | Download | only in inspector

Lines Matching refs:ScopeIterator

226 String16 scopeType(v8::debug::ScopeIterator::ScopeType type) {
228 case v8::debug::ScopeIterator::ScopeTypeGlobal:
230 case v8::debug::ScopeIterator::ScopeTypeLocal:
232 case v8::debug::ScopeIterator::ScopeTypeWith:
234 case v8::debug::ScopeIterator::ScopeTypeClosure:
236 case v8::debug::ScopeIterator::ScopeTypeCatch:
238 case v8::debug::ScopeIterator::ScopeTypeBlock:
240 case v8::debug::ScopeIterator::ScopeTypeScript:
242 case v8::debug::ScopeIterator::ScopeTypeEval:
244 case v8::debug::ScopeIterator::ScopeTypeModule:
253 Response buildScopes(v8::Isolate* isolate, v8::debug::ScopeIterator* iterator,
1118 auto scopeIterator = it->GetScopeIterator();
1119 while (!scopeIterator->Done() && scopeNumber > 0) {
1121 scopeIterator->Advance();
1127 if (!scopeIterator->SetVariableValue(toV8String(m_isolate, variableName),
1267 auto scopeIterator = iterator->GetScopeIterator();
1269 scopeIterator.get(), injectedScript, &scopes);