| Index: runtime/observatory/tests/observatory_ui/mocks/objects/class.dart
|
| diff --git a/runtime/observatory/tests/observatory_ui/mocks/objects/class.dart b/runtime/observatory/tests/observatory_ui/mocks/objects/class.dart
|
| index bc290af4bf55f6dbf9529864ff6943948014c664..42209d65e4bcb247251483b065074c28701c2ce4 100644
|
| --- a/runtime/observatory/tests/observatory_ui/mocks/objects/class.dart
|
| +++ b/runtime/observatory/tests/observatory_ui/mocks/objects/class.dart
|
| @@ -13,6 +13,8 @@ class ClassRefMock implements M.ClassRef {
|
| class ClassMock implements M.Class {
|
| final String id;
|
| final String name;
|
| + final M.ClassRef clazz;
|
| + final int size;
|
| final M.ErrorRef error;
|
| final bool isAbstract;
|
| final bool isConst;
|
| @@ -24,8 +26,9 @@ class ClassMock implements M.Class {
|
| final Iterable<M.InstanceRef> interfaces;
|
| final M.InstanceRef mixin;
|
| final Iterable<M.ClassRef> subclasses;
|
| - const ClassMock({this.id: 'c-id', this.name: 'c-name', this.error,
|
| - this.isAbstract: false, this.isConst: false, this.isPatch: false,
|
| - this.library, this.location, this.superclass, this.superType,
|
| - this.interfaces: const [], this.mixin, this.subclasses: const []});
|
| + const ClassMock({this.id: 'c-id', this.name: 'c-name', this.clazz, this.size,
|
| + this.error, this.isAbstract: false, this.isConst: false,
|
| + this.isPatch: false, this.library, this.location, this.superclass,
|
| + this.superType, this.interfaces: const [], this.mixin,
|
| + this.subclasses: const []});
|
| }
|
|
|