Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(624)

Unified Diff: runtime/bin/vmservice/client/lib/src/service/object.dart

Issue 241253002: VM Service: Include a response id when enumerating scripts. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/vm/service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/vmservice/client/lib/src/service/object.dart
diff --git a/runtime/bin/vmservice/client/lib/src/service/object.dart b/runtime/bin/vmservice/client/lib/src/service/object.dart
index d7d595b1e18b63ba5612d220775d1f3773bb1611..7e4432d96092b8b3647fd4cf0435bd80fd025351 100644
--- a/runtime/bin/vmservice/client/lib/src/service/object.dart
+++ b/runtime/bin/vmservice/client/lib/src/service/object.dart
@@ -562,6 +562,8 @@ class Isolate extends ServiceObjectOwner {
Future<ServiceObject> get(String id) {
// Do not allow null ids or empty ids.
assert(id != null && id != '');
+ if( id.contains('scripts')) throw "Here we are";
+
Cutch 2014/04/17 18:11:40 remove this
var obj = _cache[id];
if (obj != null) {
return obj.reload();
« no previous file with comments | « no previous file | runtime/vm/service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698