| Index: pkg/front_end/testcases/inference/switch_continue.dart.strong.expect
|
| diff --git a/pkg/front_end/testcases/inference/switch_continue.dart.strong.expect b/pkg/front_end/testcases/inference/switch_continue.dart.strong.expect
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9a02ec6307930de76d792aef446047944979b621
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/switch_continue.dart.strong.expect
|
| @@ -0,0 +1,22 @@
|
| +library test;
|
| +import self as self;
|
| +import "dart:core" as core;
|
| +
|
| +static method test(core::int x, () → void f) → void {
|
| + #L1:
|
| + switch(x) {
|
| + #L2:
|
| + case 0:
|
| + {
|
| + f.call();
|
| + continue #L3;
|
| + }
|
| + #L3:
|
| + case 1:
|
| + {
|
| + f.call();
|
| + break #L1;
|
| + }
|
| + }
|
| +}
|
| +static method main() → dynamic {}
|
|
|