Home
last modified time | relevance | path

Searched refs:ScopeIterator (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/debug/
Ddebug-scopes.cc17 ScopeIterator::ScopeIterator(Isolate* isolate, FrameInspector* frame_inspector, in ScopeIterator() function in v8::internal::ScopeIterator
18 ScopeIterator::Option option) in ScopeIterator()
117 ScopeIterator::ScopeIterator(Isolate* isolate, Handle<JSFunction> function) in ScopeIterator() function in v8::internal::ScopeIterator
128 MUST_USE_RESULT MaybeHandle<JSObject> ScopeIterator::MaterializeScopeDetails() { in MaterializeScopeDetails()
147 void ScopeIterator::Next() { in Next()
182 ScopeIterator::ScopeType ScopeIterator::Type() { in Type()
235 MaybeHandle<JSObject> ScopeIterator::ScopeObject() { in ScopeObject()
238 case ScopeIterator::ScopeTypeGlobal: in ScopeObject()
240 case ScopeIterator::ScopeTypeScript: in ScopeObject()
242 case ScopeIterator::ScopeTypeLocal: in ScopeObject()
[all …]
Ddebug-scopes.h18 class ScopeIterator {
38 ScopeIterator(Isolate* isolate, FrameInspector* frame_inspector,
41 ScopeIterator(Isolate* isolate, Handle<JSFunction> function);
43 ~ScopeIterator() { delete non_locals_; } in ~ScopeIterator()
144 DISALLOW_IMPLICIT_CONSTRUCTORS(ScopeIterator);
Ddebug-evaluate.cc159 const ScopeIterator::Option option = ScopeIterator::COLLECT_NON_LOCALS; in ContextBuilder()
160 for (ScopeIterator it(isolate, &frame_inspector, option); in ContextBuilder()
162 ScopeIterator::ScopeType scope_type = it.Type(); in ContextBuilder()
163 if (scope_type == ScopeIterator::ScopeTypeLocal) { in ContextBuilder()
192 } else if (scope_type == ScopeIterator::ScopeTypeCatch || in ContextBuilder()
193 scope_type == ScopeIterator::ScopeTypeWith) { in ContextBuilder()
203 } else if (scope_type == ScopeIterator::ScopeTypeBlock) { in ContextBuilder()
/external/v8/src/runtime/
Druntime-debug.cc749 for (ScopeIterator it(isolate, &frame_inspector); !it.Done(); it.Next()) { in RUNTIME_FUNCTION()
811 ScopeIterator it(isolate, &frame_inspector); in RUNTIME_FUNCTION()
843 ScopeIterator::Option option = ScopeIterator::DEFAULT; in RUNTIME_FUNCTION()
846 if (flag) option = ScopeIterator::IGNORE_NESTED_SCOPES; in RUNTIME_FUNCTION()
856 ScopeIterator it(isolate, &frame_inspector, option); in RUNTIME_FUNCTION()
882 for (ScopeIterator it(isolate, Handle<JSFunction>::cast(function)); in RUNTIME_FUNCTION()
902 ScopeIterator it(isolate, fun); in RUNTIME_FUNCTION()
917 static bool SetScopeVariableValue(ScopeIterator* it, int index, in SetScopeVariableValue()
962 ScopeIterator it(isolate, &frame_inspector); in RUNTIME_FUNCTION()
966 ScopeIterator it(isolate, fun); in RUNTIME_FUNCTION()
[all …]
/external/v8/src/
Dobjects.h4270 friend class ScopeIterator; variable