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

Unified Diff: tests/language_strong/default_implementation_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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: tests/language_strong/default_implementation_test.dart
diff --git a/tests/language_strong/default_implementation_test.dart b/tests/language_strong/default_implementation_test.dart
index 51a221009105021bd5270645199712e6349eb619..a05f5dd89441a3d06fca2f6e94d94a17a6c8f8d5 100644
--- a/tests/language_strong/default_implementation_test.dart
+++ b/tests/language_strong/default_implementation_test.dart
@@ -13,7 +13,9 @@ abstract class Point {
}
class PointImplementation implements Point {
- const PointImplementation(int x, int y) : this.x = x, this.y = y;
+ const PointImplementation(int x, int y)
+ : this.x = x,
+ this.y = y;
final int x;
final int y;
}

Powered by Google App Engine
This is Rietveld 408576698