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

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

Issue 1576093003: cpsir unittests: move all unittests into individual files and test runners. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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 // main() {
3 // var x = 122;
4 // var a = () {
5 // var y = x;
6 // return () => y;
7 // };
8 // x = x + 1;
9 // print(a()());
10 // return a;
11 // }
12
13 function() {
14 var _box_0 = {}, a = new V.main_closure(_box_0), line;
15 _box_0.x = 122;
16 ++_box_0.x;
17 line = H.S(a.call$0().call$0());
18 if (typeof dartPrint == "function")
19 dartPrint(line);
20 else if (typeof console == "object" && typeof console.log != "undefined")
21 console.log(line);
22 else if (!(typeof window == "object")) {
23 if (!(typeof print == "function"))
24 throw "Unable to print message: " + String(line);
25 print(line);
26 }
27 return a;
28 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/cps_ir/expected/closures_7.js ('k') | tests/compiler/dart2js/cps_ir/expected/closures_9.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698