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

Unified Diff: tests/language/getter_closure_execution_order_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/getter_closure_execution_order_test.dart
diff --git a/tests/language/getter_closure_execution_order_test.dart b/tests/language/getter_closure_execution_order_test.dart
index ad5daaf2eac87d174e7aa14c02b1950d44da0f6a..0b5196ba8546c894feaee2f23f538a4762c7dd3e 100644
--- a/tests/language/getter_closure_execution_order_test.dart
+++ b/tests/language/getter_closure_execution_order_test.dart
@@ -13,7 +13,7 @@ class Test1 {
get a {
Expect.equals(1, counter);
counter++;
- return (c) { };
+ return (c) {};
}
b() {
@@ -27,7 +27,7 @@ class Test2 {
static get a {
Expect.equals(0, counter);
counter++;
- return (c) { };
+ return (c) {};
}
static b() {
@@ -40,7 +40,7 @@ class Test2 {
get a {
Expect.equals(0, counter);
counter++;
- return (c) { };
+ return (c) {};
}
b() {

Powered by Google App Engine
This is Rietveld 408576698