Home
last modified time | relevance | path

Searched refs:DebugScopeIterator (Results 1 – 3 of 3) sorted by relevance

/third_party/node/deps/v8/src/debug/
Ddebug-scope-iterator.cc32 return std::unique_ptr<debug::ScopeIterator>(new internal::DebugScopeIterator( in CreateForFunction()
42 return std::unique_ptr<debug::ScopeIterator>(new internal::DebugScopeIterator( in CreateForGeneratorObject()
49 DebugScopeIterator::DebugScopeIterator(Isolate* isolate, in DebugScopeIterator() function in v8::internal::DebugScopeIterator
57 DebugScopeIterator::DebugScopeIterator(Isolate* isolate, in DebugScopeIterator() function in v8::internal::DebugScopeIterator
63 DebugScopeIterator::DebugScopeIterator(Isolate* isolate, in DebugScopeIterator() function in v8::internal::DebugScopeIterator
69 bool DebugScopeIterator::Done() { return iterator_.Done(); } in Done()
71 void DebugScopeIterator::Advance() { in Advance()
79 bool DebugScopeIterator::ShouldIgnore() { in ShouldIgnore()
84 v8::debug::ScopeIterator::ScopeType DebugScopeIterator::GetType() { in GetType()
89 v8::Local<v8::Object> DebugScopeIterator::GetObject() { in GetObject()
[all …]
Ddebug-scope-iterator.h15 class DebugScopeIterator final : public debug::ScopeIterator {
17 DebugScopeIterator(Isolate* isolate, FrameInspector* frame_inspector);
18 DebugScopeIterator(Isolate* isolate, Handle<JSFunction> function);
19 DebugScopeIterator(Isolate* isolate, Handle<JSGeneratorObject> generator);
Ddebug-stack-trace-iterator.cc168 return std::make_unique<DebugScopeIterator>(isolate_, frame_inspector_.get()); in GetScopeIterator()