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); |
-} |
+} |