Index: runtime/vm/debugger.cc |
diff --git a/runtime/vm/debugger.cc b/runtime/vm/debugger.cc |
index 565292ebce227123199cb9419fd4e115ac9b79ad..954aa8215c35cb2a349707a17fba7fa320d113f1 100644 |
--- a/runtime/vm/debugger.cc |
+++ b/runtime/vm/debugger.cc |
@@ -263,7 +263,7 @@ void Debugger::InvokeEventHandler(DebuggerEvent* event) { |
void Debugger::SignalIsolateEvent(DebuggerEvent::EventType type) { |
if (HasEventHandler()) { |
DebuggerEvent event(isolate_, type); |
- ASSERT(event.isolate_id() != DART_ILLEGAL_ISOLATE_ID); |
+ ASSERT(event.isolate_id() != ILLEGAL_ISOLATE_ID); |
if (type == DebuggerEvent::kIsolateInterrupted) { |
DebuggerStackTrace* trace = CollectStackTrace(); |
ASSERT(trace->Length() > 0); |
@@ -1039,7 +1039,7 @@ RawObject* RemoteObjectCache::GetObj(intptr_t obj_id) const { |
Debugger::Debugger() |
: isolate_(NULL), |
- isolate_id_(DART_ILLEGAL_ISOLATE_ID), |
+ isolate_id_(ILLEGAL_ISOLATE_ID), |
initialized_(false), |
next_id_(1), |
latent_breakpoints_(NULL), |
@@ -1056,7 +1056,7 @@ Debugger::Debugger() |
Debugger::~Debugger() { |
- isolate_id_ = DART_ILLEGAL_ISOLATE_ID; |
+ isolate_id_ = ILLEGAL_ISOLATE_ID; |
ASSERT(!IsPaused()); |
ASSERT(latent_breakpoints_ == NULL); |
ASSERT(src_breakpoints_ == NULL); |