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

Unified Diff: tests/compiler/dart2js_extra/do_test.dart

Issue 2345083003: dart2js: run dartfmt on tests (Closed)
Patch Set: revert another multipart test Created 4 years, 3 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/compiler/dart2js_extra/do_test.dart
diff --git a/tests/compiler/dart2js_extra/do_test.dart b/tests/compiler/dart2js_extra/do_test.dart
index 04d8d87fc2d688258ab570ecf426586798172dfd..2b7abc01cf296c1669d201d826ca2d2f27d7a6c8 100644
--- a/tests/compiler/dart2js_extra/do_test.dart
+++ b/tests/compiler/dart2js_extra/do_test.dart
@@ -12,7 +12,7 @@ void do1() {
if (x == 10) cond = false;
result += x;
x = x + 1;
- } while(cond);
+ } while (cond);
Expect.equals(55, result);
}
@@ -46,9 +46,9 @@ void do4() {
if (j == 9) cond2 = false;
result = result + 1;
j = j + 1;
- } while(cond2);
+ } while (cond2);
i = i + 1;
- } while(cond1);
+ } while (cond1);
Expect.equals(100, result);
}
« no previous file with comments | « tests/compiler/dart2js_extra/deferred_inheritance_test.dart ('k') | tests/compiler/dart2js_extra/empty_method_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698