| Index: runtime/include/dart_debugger_api.h
|
| ===================================================================
|
| --- runtime/include/dart_debugger_api.h (revision 31232)
|
| +++ runtime/include/dart_debugger_api.h (working copy)
|
| @@ -679,25 +679,33 @@
|
|
|
|
|
| /**
|
| -* Returns the url of the library \library_id.
|
| -*
|
| -* Requires there to be a current isolate.
|
| -*
|
| -* \return A string handle containing the URL of the library.
|
| -*/
|
| + * Returns the url of the library \library_id.
|
| + *
|
| + * Requires there to be a current isolate.
|
| + *
|
| + * \return A string handle containing the URL of the library.
|
| + */
|
| DART_EXPORT Dart_Handle Dart_GetLibraryURL(intptr_t library_id);
|
|
|
|
|
| /**
|
| -* Returns the isolate object corresponding to the isolate id.
|
| -*
|
| -* \return The Dart_Isolate object corresponding to the isolate id.
|
| -* If the specified id is invalid NULL is returned.
|
| -*/
|
| + * Returns the isolate object corresponding to the isolate id.
|
| + *
|
| + * \return The Dart_Isolate object corresponding to the isolate id.
|
| + * If the specified id is invalid NULL is returned.
|
| + */
|
| DART_EXPORT Dart_Isolate Dart_GetIsolate(Dart_IsolateId isolate_id);
|
|
|
|
|
| /**
|
| + * Returns the isolate id for an isolate.
|
| + *
|
| + * \return The Dart_IsolateId value corresponding to the isolate.
|
| + */
|
| +DART_EXPORT Dart_IsolateId Dart_GetIsolateId(Dart_Isolate isolate);
|
| +
|
| +
|
| +/**
|
| * Returns VM status information. VM status is implemented using a
|
| * different status plug-in for each type of status; for example, there
|
| * might be an "isolate" plug-in that returns information about the
|
|
|