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

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

Issue 773573005: vmservice: basic object graph serialization. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years 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/observatory/lib/src/service/object.dart
===================================================================
--- runtime/bin/vmservice/observatory/lib/src/service/object.dart (revision 41936)
+++ runtime/bin/vmservice/observatory/lib/src/service/object.dart (working copy)
@@ -1311,6 +1311,7 @@
@observable ServiceMap breakpoint;
@observable ServiceMap exception;
@observable ByteData data;
+ @observable int count;
void _update(ObservableMap map, bool mapIsRef) {
_loaded = true;
@@ -1327,6 +1328,9 @@
if (map['_data'] != null) {
data = map['_data'];
}
+ if (map['count'] != null) {
+ count = map['count'];
+ }
}
String toString() {

Powered by Google App Engine
This is Rietveld 408576698