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

Unified Diff: tests/language/switch_label2_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/switch_label2_test.dart
diff --git a/tests/language/switch_label2_test.dart b/tests/language/switch_label2_test.dart
index e051b6f7aba2097a8542deeb24818e308e4fe3d2..612e6a9c6372e584b3b2cd776a0c82b4afdaa2d5 100644
--- a/tests/language/switch_label2_test.dart
+++ b/tests/language/switch_label2_test.dart
@@ -16,18 +16,20 @@ void main() {
void doSwitch(int target, List expect) {
List list = [];
switch (target) {
- case 0:
- list.add(0);
- continue case2;
- case1: case 1:
- list.add(1);
- break;
- case2: case 2:
- list.add(2);
- break;
- case 3:
- list.add(3);
- continue case1;
+ case 0:
+ list.add(0);
+ continue case2;
+ case1:
+ case 1:
+ list.add(1);
+ break;
+ case2:
+ case 2:
+ list.add(2);
+ break;
+ case 3:
+ list.add(3);
+ continue case1;
}
Expect.listEquals(expect, list);
-}
+}

Powered by Google App Engine
This is Rietveld 408576698