| OLD | NEW |
| 1 library; | 1 library; |
| 2 import self as self; | 2 import self as self; |
| 3 import "dart:core" as core; | 3 import "dart:core" as core; |
| 4 | 4 |
| 5 static method main(core::List<core::String> args) → void { | 5 static method main(core::List<core::String> args) → void { |
| 6 dynamic x = args.length; | 6 dynamic x = args.length; |
| 7 #L1: | 7 #L1: |
| 8 switch(x) { | 8 switch(x) { |
| 9 #L2: | 9 #L2: |
| 10 case 3: | 10 case 3: |
| 11 { | 11 { |
| 12 x = 4; | 12 x = 4; |
| 13 throw new core::FallThroughError::•(); | 13 throw new core::FallThroughError::_create("pkg/front_end/testcases/fallt
hrough.dart", 4); |
| 14 } | 14 } |
| 15 #L3: | 15 #L3: |
| 16 case 5: | 16 case 5: |
| 17 { | 17 { |
| 18 break #L1; | 18 break #L1; |
| 19 } | 19 } |
| 20 #L4: | 20 #L4: |
| 21 case 6: | 21 case 6: |
| 22 case 7: | 22 case 7: |
| 23 { | 23 { |
| 24 if(args.[](0).==("")) { | 24 if(args.[](0).==("")) { |
| 25 break #L1; | 25 break #L1; |
| 26 } | 26 } |
| 27 else { | 27 else { |
| 28 return; | 28 return; |
| 29 } | 29 } |
| 30 throw new core::FallThroughError::•(); | 30 throw new core::FallThroughError::_create("pkg/front_end/testcases/fallt
hrough.dart", 8); |
| 31 } | 31 } |
| 32 #L5: | 32 #L5: |
| 33 case 4: | 33 case 4: |
| 34 { | 34 { |
| 35 break #L1; | 35 break #L1; |
| 36 } | 36 } |
| 37 } | 37 } |
| 38 } | 38 } |
| OLD | NEW |