Lines Matching refs:ScopeIterator
16 std::unique_ptr<debug::ScopeIterator> debug::ScopeIterator::CreateForFunction( in CreateForFunction()
32 return std::unique_ptr<debug::ScopeIterator>(new internal::DebugScopeIterator( in CreateForFunction()
36 std::unique_ptr<debug::ScopeIterator>
37 debug::ScopeIterator::CreateForGeneratorObject( in CreateForGeneratorObject()
42 return std::unique_ptr<debug::ScopeIterator>(new internal::DebugScopeIterator( in CreateForGeneratorObject()
53 ::v8::internal::ScopeIterator::ReparseStrategy::kFunctionLiteral) { in DebugScopeIterator()
80 if (GetType() == debug::ScopeIterator::ScopeTypeLocal) return false; in ShouldIgnore()
81 return !iterator_.DeclaresLocals(i::ScopeIterator::Mode::ALL); in ShouldIgnore()
84 v8::debug::ScopeIterator::ScopeType DebugScopeIterator::GetType() { in GetType()
86 return static_cast<v8::debug::ScopeIterator::ScopeType>(iterator_.Type()); in GetType()
91 Handle<JSObject> value = iterator_.ScopeObject(i::ScopeIterator::Mode::ALL); in GetObject()