| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 test(); | 53 test(); |
| 54 } | 54 } |
| 55 } | 55 } |
| 56 | 56 |
| 57 ------ >8 ====== | 57 ------ >8 ====== |
| 58 Correct mapping for <function> | 58 Correct mapping for <function> |
| 59 Correct mapping for <1> | 59 Correct mapping for <1> |
| 60 Correct mapping for <continue> | 60 Correct mapping for <continue> |
| 61 Correct mapping for <test> | 61 Correct mapping for <test> |
| 62 | 62 |
| 63 Running: inconsistentSpaceAfterNull |
| 64 ====== 8< ------ |
| 65 1 || null; |
| 66 |
| 67 ------ >8 ====== |
| 68 Correct mapping for <||> |
| 69 Correct mapping for <null> |
| 70 Correct mapping for <;> |
| 71 |
| OLD | NEW |