Index: Source/bindings/core/dart/DartScriptDebugServer.h |
diff --git a/Source/bindings/core/dart/DartScriptDebugServer.h b/Source/bindings/core/dart/DartScriptDebugServer.h |
index ee86230274a4baa23fdf8c50e67d3727dfe27426..c7a260024f5865c1d29c7c88940fe1e27f2fb56b 100644 |
--- a/Source/bindings/core/dart/DartScriptDebugServer.h |
+++ b/Source/bindings/core/dart/DartScriptDebugServer.h |
@@ -189,6 +189,8 @@ public: |
virtual void stepOutOfFunction(); |
virtual bool setScriptSource(const String& sourceID, const String& newContent, bool preview, String* error, RefPtr<TypeBuilder::Debugger::SetScriptSourceError>&, StackTrace* newCallFrames, RefPtr<JSONObject>* result); |
+ virtual ScriptCallFrame callFrameNoScopes(int index); |
+ |
virtual ScriptCallFrame topCallFrameNoScopes(); |
virtual int frameCount(); |
virtual StackTrace currentCallFrames(); |
@@ -236,6 +238,8 @@ protected: |
void handleProgramBreak(Dart_Isolate, Dart_StackTrace, intptr_t dartBreakpointId, Dart_Handle exception, const Dart_CodeLocation&); |
void handleDartDebugEvent(Dart_IsolateId, intptr_t breakpointId, Dart_Handle exception, const Dart_CodeLocation&); |
+ ScriptCallFrame getScriptCallFrameHelper(int frameIndex); |
+ |
void debugBreak(); |
void cancelDebugBreak(); |
Page* inferPage(Dart_Isolate); |
@@ -289,6 +293,7 @@ public: |
virtual void stepOutOfFunction(); |
virtual bool setScriptSource(const String& sourceID, const String& newContent, bool preview, String* error, RefPtr<TypeBuilder::Debugger::SetScriptSourceError>&, StackTrace* newCallFrames, RefPtr<JSONObject>* result); |
+ virtual ScriptCallFrame callFrameNoScopes(int index); |
virtual ScriptCallFrame topCallFrameNoScopes(); |
virtual int frameCount(); |