Index: runtime/include/dart_debugger_api.h |
diff --git a/runtime/include/dart_debugger_api.h b/runtime/include/dart_debugger_api.h |
index 50bf9f005021b29ddf803a0c688528f77b96b6be..53f78d7325583c58f9a679025f3f312d05578e7c 100755 |
--- a/runtime/include/dart_debugger_api.h |
+++ b/runtime/include/dart_debugger_api.h |
@@ -395,6 +395,7 @@ DART_EXPORT Dart_Handle Dart_GetActivationFrame( |
* Returns information about the given activation frame. |
* \function_name receives a string handle with the qualified |
* function name. |
+ * \function receives a handle to the function. |
* \script_url receives a string handle with the url of the |
* source script that contains the frame's function. |
* \line_number receives the line number in the script. |
@@ -410,6 +411,7 @@ DART_EXPORT Dart_Handle Dart_GetActivationFrame( |
DART_EXPORT Dart_Handle Dart_ActivationFrameInfo( |
Dart_ActivationFrame activation_frame, |
Dart_Handle* function_name, |
+ Dart_Handle* function, |
hausner
2013/09/12 00:32:19
Please don't add the parameter to a deprecated API
Jacob
2013/09/12 17:38:50
Whoops. I didn't notice that this method was depre
|
Dart_Handle* script_url, |
intptr_t* line_number, |
intptr_t* library_id); |