Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(399)

Side by Side Diff: pkg/kernel/testcases/strong-mode/fallthrough.baseline.txt

Issue 2825063002: Move kernel baseline tests to front_end. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 library;
2 import self as self;
3 import "dart:core" as core;
4
5 static method main(core::List<core::String> args) → void {
6 core::int x = args.{core::List::length};
7 #L1:
8 switch(x) {
9 #L2:
10 case 3:
11 {
12 x = 4;
13 throw new core::FallThroughError::•();
14 }
15 #L3:
16 case 5:
17 {
18 break #L1;
19 }
20 #L4:
21 case 6:
22 case 7:
23 {
24 if(args.{core::List::[]}(0).{core::String::==}("")) {
25 break #L1;
26 }
27 else {
28 return;
29 }
30 throw new core::FallThroughError::•();
31 }
32 #L5:
33 case 4:
34 {
35 break #L1;
36 }
37 }
38 }
OLDNEW
« no previous file with comments | « pkg/kernel/testcases/strong-mode/external.baseline.txt ('k') | pkg/kernel/testcases/strong-mode/micro.baseline.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698