OLD | NEW |
1 40 columns | | 1 40 columns | |
2 >>> space-separated adjacent strings are not split if they fit | 2 >>> space-separated adjacent strings are not split if they fit |
3 var name = new Symbol("the first string" "the second"); | 3 var name = new Symbol("the first string" "the second"); |
4 <<< | 4 <<< |
5 var name = new Symbol( | 5 var name = new Symbol( |
6 "the first string" "the second"); | 6 "the first string" "the second"); |
7 >>> space-separated adjacent strings are split if they don't fit | 7 >>> space-separated adjacent strings are split if they don't fit |
8 var name = new Symbol("the first very long string" "the second very longstring")
; | 8 var name = new Symbol("the first very long string" "the second very longstring")
; |
9 <<< | 9 <<< |
10 var name = new Symbol( | 10 var name = new Symbol( |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 verylongIdentifier.property as LongTypeName; | 126 verylongIdentifier.property as LongTypeName; |
127 <<< | 127 <<< |
128 verylongIdentifier.property | 128 verylongIdentifier.property |
129 as LongTypeName; | 129 as LongTypeName; |
130 >>> null coalescing operator | 130 >>> null coalescing operator |
131 identifier&&identifier&&identifier&&identifier; | 131 identifier&&identifier&&identifier&&identifier; |
132 <<< | 132 <<< |
133 identifier && | 133 identifier && |
134 identifier && | 134 identifier && |
135 identifier && | 135 identifier && |
136 identifier; | 136 identifier; |
| 137 >>> "." in named constructor |
| 138 new VeryLongClassName.veryLongNamedConstructor(); |
| 139 <<< |
| 140 new VeryLongClassName |
| 141 .veryLongNamedConstructor(); |
OLD | NEW |