| 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..bd47064dfed2819b77b95de1ff0f9047d103c6f6 100755
|
| --- a/runtime/include/dart_debugger_api.h
|
| +++ b/runtime/include/dart_debugger_api.h
|
| @@ -390,7 +390,7 @@ DART_EXPORT Dart_Handle Dart_GetActivationFrame(
|
|
|
|
|
| /**
|
| - * DEPRECATED -- Use Dart_ActivationframeGetLocation instead.
|
| + * DEPRECATED -- Use Dart_ActivationFrameGetLocation instead.
|
| *
|
| * Returns information about the given activation frame.
|
| * \function_name receives a string handle with the qualified
|
| @@ -420,6 +420,7 @@ DART_EXPORT Dart_Handle Dart_ActivationFrameInfo(
|
| *
|
| * \function_name receives a string handle with the qualified
|
| * function name.
|
| + * \function receives a handle to the function.
|
| * \location.script_url receives a string handle with the url of
|
| * the source script that contains the frame's function.
|
| * Receives a null handle if there is no textual location
|
| @@ -440,6 +441,7 @@ DART_EXPORT Dart_Handle Dart_ActivationFrameInfo(
|
| DART_EXPORT Dart_Handle Dart_ActivationFrameGetLocation(
|
| Dart_ActivationFrame activation_frame,
|
| Dart_Handle* function_name,
|
| + Dart_Handle* function,
|
| Dart_CodeLocation* location);
|
|
|
|
|
|
|