| OLD | NEW |
| 1 40 columns | | 1 40 columns | |
| 2 >>> empty list | 2 >>> empty list |
| 3 []; | 3 []; |
| 4 <<< | 4 <<< |
| 5 []; | 5 []; |
| 6 >>> exactly 40 characters | 6 >>> exactly 40 characters |
| 7 [first, second, third, fourth, seventh]; | 7 [first, second, third, fourth, seventh]; |
| 8 <<< | 8 <<< |
| 9 [first, second, third, fourth, seventh]; | 9 [first, second, third, fourth, seventh]; |
| 10 >>> | 10 >>> |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 () { | 66 () { |
| 67 "fn"; | 67 "fn"; |
| 68 }, | 68 }, |
| 69 third, | 69 third, |
| 70 fourth | 70 fourth |
| 71 ]; | 71 ]; |
| 72 >>> spaces between items | 72 >>> spaces between items |
| 73 [1,2,3,4]; | 73 [1,2,3,4]; |
| 74 <<< | 74 <<< |
| 75 [1, 2, 3, 4]; | 75 [1, 2, 3, 4]; |
| 76 >>> dangling comma | 76 >>> trailing comma forces split |
| 77 [1 , ]; | 77 [1 , ]; |
| 78 <<< | 78 <<< |
| 79 [1,]; | 79 [ |
| 80 >>> dangling comma multiline | 80 1, |
| 81 ]; |
| 82 >>> trailing comma multiline |
| 81 [first, second, third, fourth, fifth, sixth , ]; | 83 [first, second, third, fourth, fifth, sixth , ]; |
| 82 <<< | 84 <<< |
| 83 [ | 85 [ |
| 84 first, | 86 first, |
| 85 second, | 87 second, |
| 86 third, | 88 third, |
| 87 fourth, | 89 fourth, |
| 88 fifth, | 90 fifth, |
| 89 sixth, | 91 sixth, |
| 90 ]; | 92 ]; |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 ]; | 161 ]; |
| 160 <<< | 162 <<< |
| 161 [ | 163 [ |
| 162 element, | 164 element, |
| 163 | 165 |
| 164 // comment | 166 // comment |
| 165 element, | 167 element, |
| 166 | 168 |
| 167 element | 169 element |
| 168 ]; | 170 ]; |
| OLD | NEW |