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

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

Issue 1560963002: Do TypePropagation again after inlining (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: fix tests 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
1 // Expectation for test: 1 // Expectation for test:
2 // class A { 2 // class A {
3 // a() => 1; 3 // a() => 1;
4 // b() => () => a(); 4 // b() => () => a();
5 // } 5 // }
6 // main() { 6 // main() {
7 // print(new A().b()()); 7 // print(new A().b()());
8 // } 8 // }
9 9
10 function() { 10 function() {
11 var line = H.S(new V.A_b_closure(V.A$()).call$0()); 11 var line = H.S(V.A$().a$0());
12 if (typeof dartPrint == "function") 12 if (typeof dartPrint == "function")
13 dartPrint(line); 13 dartPrint(line);
14 else if (typeof console == "object" && typeof console.log != "undefined") 14 else if (typeof console == "object" && typeof console.log != "undefined")
15 console.log(line); 15 console.log(line);
16 else if (!(typeof window == "object")) { 16 else if (!(typeof window == "object")) {
17 if (!(typeof print == "function")) 17 if (!(typeof print == "function"))
18 throw "Unable to print message: " + String(line); 18 throw "Unable to print message: " + String(line);
19 print(line); 19 print(line);
20 } 20 }
21 } 21 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/js_backend/codegen/task.dart ('k') | tests/compiler/dart2js/cps_ir/expected/closures_15.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698