Index: runtime/bin/vmservice/vmservice.dart |
=================================================================== |
--- runtime/bin/vmservice/vmservice.dart (revision 31674) |
+++ runtime/bin/vmservice/vmservice.dart (working copy) |
@@ -83,9 +83,10 @@ |
_clientCollection(message); |
return message.response; |
} |
- return runningIsolates.route(message); |
+ if (message.path[0] == 'isolates') { |
+ return runningIsolates.route(message); |
+ } |
+ |
+ return message.sendToVM(); |
} |
} |
- |
-void sendServiceMessage(SendPort sp, Object m) |
- native "VMService_SendServiceMessage"; |