Index: runtime/include/dart_debugger_api.h |
diff --git a/runtime/include/dart_debugger_api.h b/runtime/include/dart_debugger_api.h |
index 06efa30d16022222739a9d912dd8beb64c6de401..9c37ffa8a888b0064e1add30c83820479205ca15 100755 |
--- a/runtime/include/dart_debugger_api.h |
+++ b/runtime/include/dart_debugger_api.h |
@@ -20,10 +20,10 @@ typedef struct _Dart_ActivationFrame* Dart_ActivationFrame; |
typedef Dart_Port Dart_IsolateId; |
/** |
- * ILLEGAL_ISOLATE_ID is a number guaranteed never to be associated with a |
+ * DART_ILLEGAL_ISOLATE_ID is a number guaranteed never to be associated with a |
* valid isolate. |
*/ |
-#define ILLEGAL_ISOLATE_ID ILLEGAL_PORT |
+#define DART_ILLEGAL_ISOLATE_ID DART_ILLEGAL_PORT |
/** |
@@ -477,7 +477,7 @@ DART_EXPORT Dart_Handle Dart_GetLocalVariables( |
* Returns origin class of a function. |
* |
* Requires there to be a current isolate. |
- * |
+ * |
* \return Returns the class id (a handle to an integer) of the class in |
* which \function is defined. Returns a null handle if \function is defined |
* at the top level. Returns an error object otherwise. |
@@ -520,7 +520,7 @@ DART_EXPORT Dart_Handle Dart_ActivationFrameEvaluate( |
* were a static method of that class. |
* If \target is a Library, the expression is evaluated as if it |
* were a top-level function in that library. |
- * |
+ * |
* \return A handle to the computed value, or an error object if |
* the compilation of the expression fails, or if the evaluation throws |
* an error. |