| OLD | NEW |
| 1 Verifies JavaScript pretty-printing functionality. | 1 Verifies JavaScript pretty-printing functionality. |
| 2 | 2 |
| 3 | 3 |
| 4 Running: semicolonAfterFunctionExpression | 4 Running: semicolonAfterFunctionExpression |
| 5 ====== 8< ------ | 5 ====== 8< ------ |
| 6 var onClick = function() { | 6 var onClick = function() { |
| 7 console.log('click!'); | 7 console.log('click!'); |
| 8 }; | 8 }; |
| 9 console.log('done'); | 9 console.log('done'); |
| 10 | 10 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 Running: squashMultipleNewlines | 72 Running: squashMultipleNewlines |
| 73 ====== 8< ------ | 73 ====== 8< ------ |
| 74 a(); | 74 a(); |
| 75 | 75 |
| 76 b(); | 76 b(); |
| 77 | 77 |
| 78 ------ >8 ====== | 78 ------ >8 ====== |
| 79 Correct mapping for <a> | 79 Correct mapping for <a> |
| 80 Correct mapping for <b> | 80 Correct mapping for <b> |
| 81 | 81 |
| 82 Running: ensureExponentialOperator |
| 83 ====== 8< ------ |
| 84 2 ** 3 |
| 85 |
| 86 ------ >8 ====== |
| 87 Correct mapping for <2> |
| 88 Correct mapping for <**> |
| 89 Correct mapping for <3> |
| 90 |
| OLD | NEW |