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

Unified Diff: runtime/observatory/tests/observatory_ui/mocks/objects/class.dart

Issue 2244433003: Converted Observatory refs elements (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Merged with master Created 4 years, 4 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
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 []});
}
« no previous file with comments | « runtime/observatory/tests/observatory_ui/mocks.dart ('k') | runtime/observatory/tests/observatory_ui/mocks/objects/code.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698