OLD | NEW |
1 Verifies JavaScript pretty-printing functionality. | 1 Verifies JavaScript pretty-printing functionality. |
2 | 2 |
3 | 3 |
4 Running: trailingCommentsTest | 4 Running: trailingCommentsTest |
5 ====== 8< ------ | 5 ====== 8< ------ |
6 noop(); | 6 noop(); |
7 //#sourceMappingURL=program.js.map | 7 //#sourceMappingURL=program.js.map |
8 | 8 |
9 ------ >8 ====== | 9 ------ >8 ====== |
10 | 10 |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 let name = names[i]; | 61 let name = names[i]; |
62 let person = persons[i]; | 62 let person = persons[i]; |
63 } | 63 } |
64 | 64 |
65 ------ >8 ====== | 65 ------ >8 ====== |
66 Correct mapping for <for> | 66 Correct mapping for <for> |
67 Correct mapping for <person> | 67 Correct mapping for <person> |
68 Correct mapping for <name> | 68 Correct mapping for <name> |
69 Correct mapping for <}> | 69 Correct mapping for <}> |
70 | 70 |
| 71 Running: anonimousFunctionAsParameter |
| 72 ====== 8< ------ |
| 73 setTimeout(function() { |
| 74 alert(1); |
| 75 }, 2000); |
| 76 |
| 77 ------ >8 ====== |
| 78 Correct mapping for <setTimeout> |
| 79 Correct mapping for <function> |
| 80 Correct mapping for <alert> |
| 81 Correct mapping for <2000> |
| 82 |
OLD | NEW |