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

Unified Diff: runtime/include/dart_debugger_api.h

Issue 23609032: Add "function" as an argument to Dart_ActivationFrameInfo (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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/debugger_api_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « no previous file | runtime/vm/debugger_api_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698