| OLD | NEW |
| (Empty) |
| 1 // Expectation for test: | |
| 2 // main() { | |
| 3 // var a; | |
| 4 // for (var i=0; i<10; i++) { | |
| 5 // a = () => i; | |
| 6 // } | |
| 7 // print(a()); | |
| 8 // } | |
| 9 | |
| 10 function() { | |
| 11 var a = null, i = 0, line; | |
| 12 for (; i < 10; a = new V.main_closure(i), ++i) | |
| 13 ; | |
| 14 line = H.S(a.call$0()); | |
| 15 if (typeof dartPrint == "function") | |
| 16 dartPrint(line); | |
| 17 else if (typeof console == "object" && typeof console.log != "undefined") | |
| 18 console.log(line); | |
| 19 else if (!(typeof window == "object")) { | |
| 20 if (!(typeof print == "function")) | |
| 21 throw "Unable to print message: " + String(line); | |
| 22 print(line); | |
| 23 } | |
| 24 } | |
| OLD | NEW |