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

Unified Diff: runtime/bin/vmservice/client/lib/src/observatory/isolate.dart

Issue 59283007: List scripts in library and display script source (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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
Index: runtime/bin/vmservice/client/lib/src/observatory/isolate.dart
diff --git a/runtime/bin/vmservice/client/lib/src/observatory/isolate.dart b/runtime/bin/vmservice/client/lib/src/observatory/isolate.dart
index b761b2f19a78dcb3e7f18477526314ff42a32db5..c5423b98c3028b3661d3a982a16172b9d16206cf 100644
--- a/runtime/bin/vmservice/client/lib/src/observatory/isolate.dart
+++ b/runtime/bin/vmservice/client/lib/src/observatory/isolate.dart
@@ -6,8 +6,10 @@ part of observatory;
/// State for a running isolate.
class Isolate extends Observable {
- @observable final int id;
- @observable final String name;
+ @observable int id;
+ @observable String name;
+ @observable final Map<String, ScriptSource> scripts =
+ toObservable(new Map<String, ScriptSource>());
Isolate(this.id, this.name);

Powered by Google App Engine
This is Rietveld 408576698