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

Unified Diff: tests/language_strong/named_argument_in_const_creation_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/named_argument_in_const_creation_test.dart
diff --git a/tests/language_strong/named_argument_in_const_creation_test.dart b/tests/language_strong/named_argument_in_const_creation_test.dart
index e7dbb5fbc50e1fc4c85ce1b86ed05222959906e2..93fe6e5ec25b6f96a5cd0c5319548fff11ed3045 100644
--- a/tests/language_strong/named_argument_in_const_creation_test.dart
+++ b/tests/language_strong/named_argument_in_const_creation_test.dart
@@ -7,7 +7,9 @@ import "package:expect/expect.dart";
class A {
final x;
final y;
- const A(a, {b}) : x = a, y = b;
+ const A(a, {b})
+ : x = a,
+ y = b;
static const test = const A(1, b: 2);
}

Powered by Google App Engine
This is Rietveld 408576698