(a, b)
| 128321 | } |
| 128322 | ts.textSpansEqual = textSpansEqual; |
| 128323 | function documentSpansEqual(a, b) { |
| 128324 | return a.fileName === b.fileName && textSpansEqual(a.textSpan, b.textSpan); |
| 128325 | } |
| 128326 | ts.documentSpansEqual = documentSpansEqual; |
| 128327 | /** |
| 128328 | * Iterates through 'array' by index and performs the callback on each element of array until the callback |
nothing calls this directly
no test coverage detected