| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef INCLUDE_DART_DEBUGGER_API_H_ | 5 #ifndef INCLUDE_DART_DEBUGGER_API_H_ |
| 6 #define INCLUDE_DART_DEBUGGER_API_H_ | 6 #define INCLUDE_DART_DEBUGGER_API_H_ |
| 7 | 7 |
| 8 #include "include/dart_api.h" | 8 #include "include/dart_api.h" |
| 9 | 9 |
| 10 typedef struct _Dart_Breakpoint* Dart_Breakpoint; | 10 typedef struct _Dart_Breakpoint* Dart_Breakpoint; |
| (...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 * | 449 * |
| 450 * Requires there to be a current isolate. | 450 * Requires there to be a current isolate. |
| 451 * | 451 * |
| 452 * \return A handle to the True object if no error occurs. | 452 * \return A handle to the True object if no error occurs. |
| 453 * A handle to the False object if there is no text | 453 * A handle to the False object if there is no text |
| 454 * position for the frame. | 454 * position for the frame. |
| 455 */ | 455 */ |
| 456 DART_EXPORT Dart_Handle Dart_ActivationFrameGetLocation( | 456 DART_EXPORT Dart_Handle Dart_ActivationFrameGetLocation( |
| 457 Dart_ActivationFrame activation_frame, | 457 Dart_ActivationFrame activation_frame, |
| 458 Dart_Handle* script_url, | 458 Dart_Handle* script_url, |
| 459 intptr_t* library_id, |
| 459 intptr_t* token_number); | 460 intptr_t* token_number); |
| 460 | 461 |
| 461 | 462 |
| 462 /** | 463 /** |
| 463 * Returns an array containing all the local variable names and values of | 464 * Returns an array containing all the local variable names and values of |
| 464 * the given \activation_frame. | 465 * the given \activation_frame. |
| 465 * | 466 * |
| 466 * Requires there to be a current isolate. | 467 * Requires there to be a current isolate. |
| 467 * | 468 * |
| 468 * \return A handle to an array containing variable names and | 469 * \return A handle to an array containing variable names and |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 639 * \param request A REST-like string, which uses '/' to separate | 640 * \param request A REST-like string, which uses '/' to separate |
| 640 * parameters. The first parameter is always the status type. | 641 * parameters. The first parameter is always the status type. |
| 641 * | 642 * |
| 642 * \return The requested status as a JSON formatted string, with the | 643 * \return The requested status as a JSON formatted string, with the |
| 643 * contents defined by the status plug-in. The caller is responsible | 644 * contents defined by the status plug-in. The caller is responsible |
| 644 * for freeing this string. | 645 * for freeing this string. |
| 645 */ | 646 */ |
| 646 DART_EXPORT char* Dart_GetVmStatus(const char* request); | 647 DART_EXPORT char* Dart_GetVmStatus(const char* request); |
| 647 | 648 |
| 648 #endif // INCLUDE_DART_DEBUGGER_API_H_ | 649 #endif // INCLUDE_DART_DEBUGGER_API_H_ |
| OLD | NEW |