| OLD | NEW |
| 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 } |
| OLD | NEW |