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