| 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() {
|
|
|