573a7c543f
Change-Id: Id02e72dac031224c1c37cdde5a20fb19c0ebf6b5 Reviewed-on: https://dart-review.googlesource.com/c/84404 Auto-Submit: Peter von der Ahé <ahe@google.com> Commit-Queue: Jens Johansen <jensj@google.com> Reviewed-by: Jens Johansen <jensj@google.com>
39 lines
692 B
Plaintext
39 lines
692 B
Plaintext
library;
|
|
import self as self;
|
|
import "dart:core" as core;
|
|
|
|
static method main(core::List<core::String> args) → void {
|
|
dynamic x = args.length;
|
|
#L1:
|
|
switch(x) {
|
|
#L2:
|
|
case 3:
|
|
{
|
|
x = 4;
|
|
throw new core::FallThroughError::_create("org-dartlang-testcase:///fallthrough.dart", 8);
|
|
}
|
|
#L3:
|
|
case 5:
|
|
{
|
|
break #L1;
|
|
}
|
|
#L4:
|
|
case 6:
|
|
case 7:
|
|
{
|
|
if(args.[](0).==("")) {
|
|
break #L1;
|
|
}
|
|
else {
|
|
return;
|
|
}
|
|
throw new core::FallThroughError::_create("org-dartlang-testcase:///fallthrough.dart", 12);
|
|
}
|
|
#L5:
|
|
case 4:
|
|
{
|
|
break #L1;
|
|
}
|
|
}
|
|
}
|