| Index: pkg/kernel/testcases/strong-mode/fallthrough.baseline.txt
|
| diff --git a/pkg/kernel/testcases/strong-mode/fallthrough.baseline.txt b/pkg/kernel/testcases/strong-mode/fallthrough.baseline.txt
|
| deleted file mode 100644
|
| index 8c544b3e84d29b24cefafb0cb13187438881a6d7..0000000000000000000000000000000000000000
|
| --- a/pkg/kernel/testcases/strong-mode/fallthrough.baseline.txt
|
| +++ /dev/null
|
| @@ -1,38 +0,0 @@
|
| -library;
|
| -import self as self;
|
| -import "dart:core" as core;
|
| -
|
| -static method main(core::List<core::String> args) → void {
|
| - core::int x = args.{core::List::length};
|
| - #L1:
|
| - switch(x) {
|
| - #L2:
|
| - case 3:
|
| - {
|
| - x = 4;
|
| - throw new core::FallThroughError::•();
|
| - }
|
| - #L3:
|
| - case 5:
|
| - {
|
| - break #L1;
|
| - }
|
| - #L4:
|
| - case 6:
|
| - case 7:
|
| - {
|
| - if(args.{core::List::[]}(0).{core::String::==}("")) {
|
| - break #L1;
|
| - }
|
| - else {
|
| - return;
|
| - }
|
| - throw new core::FallThroughError::•();
|
| - }
|
| - #L5:
|
| - case 4:
|
| - {
|
| - break #L1;
|
| - }
|
| - }
|
| -}
|
|
|