Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(378)

Unified Diff: runtime/include/dart_debugger_api.h

Issue 9484002: StepOver, StepInto, StepOut (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/vm/code_generator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/include/dart_debugger_api.h
===================================================================
--- runtime/include/dart_debugger_api.h (revision 4638)
+++ runtime/include/dart_debugger_api.h (working copy)
@@ -101,6 +101,33 @@
/**
+ * Can be called from the breakpoint handler. Sets the debugger to
+ * single step mode.
+ *
+ * Requires there to be a current isolate.
+ */
+DART_EXPORT Dart_Handle Dart_SetStepOver();
+
+
+/**
+ * Can be called from the breakpoint handler. Causes the debugger to
+ * break after at the beginning of the next function call.
+ *
+ * Requires there to be a current isolate.
+ */
+DART_EXPORT Dart_Handle Dart_SetStepInto();
+
+
+/**
+ * Can be called from the breakpoint handler. Causes the debugger to
+ * break after returning from the current Dart function.
+ *
+ * Requires there to be a current isolate.
+ */
+DART_EXPORT Dart_Handle Dart_SetStepOut();
+
+
+/**
* Installs a handler callback function that gets called by the VM
* when a breakpoint has been reached.
*
« no previous file with comments | « no previous file | runtime/vm/code_generator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698