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

Side by Side Diff: tests/compiler/dart2js/cps_ir/expected/control_flow_3.js

Issue 2246623002: Delete CPS IR (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 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 // Expectation for test:
2 // foo(a) { try { print(a); } finally { return a; } }
3 //
4 // main() {
5 // for (int i = 0; foo(true); i = foo(i)) {
6 // print(1);
7 // if (foo(false)) break;
8 // }
9 // print(2);
10 // }
11
12 function() {
13 var i = 0;
14 for (; V.foo(true) === true; i = V.foo(i)) {
15 P.print(1);
16 if (V.foo(false) === true)
17 break;
18 }
19 P.print(2);
20 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/cps_ir/expected/control_flow_2.js ('k') | tests/compiler/dart2js/cps_ir/expected/control_flow_4.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698