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

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

Issue 2751423005: Run dartfmt on all files under runtime. (Closed)
Patch Set: Run dartfmt on all files under runtime. Created 3 years, 9 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/field.dart
diff --git a/runtime/observatory/tests/observatory_ui/mocks/objects/field.dart b/runtime/observatory/tests/observatory_ui/mocks/objects/field.dart
index 99f0ed381cb4e288fd21e3c811e33bf86b44de20..ec3b8f59f1192e71eff8041bc630a67a80099d2f 100644
--- a/runtime/observatory/tests/observatory_ui/mocks/objects/field.dart
+++ b/runtime/observatory/tests/observatory_ui/mocks/objects/field.dart
@@ -13,9 +13,12 @@ class FieldRefMock implements M.FieldRef {
final bool isFinal;
final bool isStatic;
- const FieldRefMock({this.id: 'field-id', this.name: 'field-name',
- this.dartOwner,
- this.declaredType: const InstanceRefMock(name: 'dynamic'),
- this.isConst: false,
- this.isFinal: false, this.isStatic: false});
+ const FieldRefMock(
+ {this.id: 'field-id',
+ this.name: 'field-name',
+ this.dartOwner,
+ this.declaredType: const InstanceRefMock(name: 'dynamic'),
+ this.isConst: false,
+ this.isFinal: false,
+ this.isStatic: false});
}

Powered by Google App Engine
This is Rietveld 408576698