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

Unified Diff: tests/language/const_local_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/const_local_test.dart
diff --git a/tests/language/const_local_test.dart b/tests/language/const_local_test.dart
index bc5b71bddc8c034deb140b38765f1672e359c6f0..f5288ed4dffda7a21f464671fb592cf2fa4df9d5 100644
--- a/tests/language/const_local_test.dart
+++ b/tests/language/const_local_test.dart
@@ -5,13 +5,13 @@
import "package:expect/expect.dart";
main() {
- const a = 1;
- Expect.equals(1, a);
- Expect.equals(1, const A(a).a);
- Expect.equals(1, const [const A(a)][0].a);
+ const a = 1;
+ Expect.equals(1, a);
+ Expect.equals(1, const A(a).a);
+ Expect.equals(1, const [const A(a)][0].a);
}
class A {
- final a;
- const A(this.a);
+ final a;
+ const A(this.a);
}

Powered by Google App Engine
This is Rietveld 408576698