Index: runtime/include/dart_debugger_api.h |
=================================================================== |
--- runtime/include/dart_debugger_api.h (revision 26007) |
+++ runtime/include/dart_debugger_api.h (working copy) |
@@ -472,6 +472,20 @@ |
/** |
+ * Execute the expression given is string \expr in the context |
+ * of \object. |
+ * |
+ * Requires there to be a current isolate. |
+ * |
+ * \return A handle to the computed value, or an error object if |
+ * the compilation of the expression fails, or the evaluation throws |
+ * an error. |
+ */ |
+DART_EXPORT Dart_Handle Dart_EvaluateExpr(Dart_Handle object, |
Ivan Posva
2013/08/19 21:32:18
object -> target to match other functions in dart_
hausner
2013/08/19 22:47:38
Done. Also added TODOs in the wire protocol code t
|
+ Dart_Handle expr); |
+ |
+ |
+/** |
* Returns the class of the given \object. |
* |
* Requires there to be a current isolate. |