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

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

Issue 2759973004: Fix observatory tests broken by running dartfmt. Temporarily reverted formatting for evaluate_activ… (Closed)
Patch Set: 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/guarded.dart
diff --git a/runtime/observatory/tests/observatory_ui/mocks/objects/guarded.dart b/runtime/observatory/tests/observatory_ui/mocks/objects/guarded.dart
index 95de8627b9fb8068587d36b4c42995880434e873..8d0c8cca3eaaa96576cd405f0fb20cea3568bf76 100644
--- a/runtime/observatory/tests/observatory_ui/mocks/objects/guarded.dart
+++ b/runtime/observatory/tests/observatory_ui/mocks/objects/guarded.dart
@@ -10,9 +10,7 @@ class GuardedMock<T> implements M.Guarded {
final T asValue;
final M.Sentinel asSentinel;
- const GuardedMock.fromValue(this.asValue)
- : asSentinel = null;
+ const GuardedMock.fromValue(this.asValue) : asSentinel = null;
- const GuardedMock.fromSentinel(this.asSentinel)
- : asValue = null;
+ const GuardedMock.fromSentinel(this.asSentinel) : asValue = null;
}

Powered by Google App Engine
This is Rietveld 408576698