(sourceFile, position)
| 10382 | } |
| 10383 | ts.getLinesBetweenPositions = getLinesBetweenPositions; |
| 10384 | function getLineAndCharacterOfPosition(sourceFile, position) { |
| 10385 | return computeLineAndCharacterOfPosition(getLineStarts(sourceFile), position); |
| 10386 | } |
| 10387 | ts.getLineAndCharacterOfPosition = getLineAndCharacterOfPosition; |
| 10388 | function isWhiteSpaceLike(ch) { |
| 10389 | return isWhiteSpaceSingleLine(ch) || isLineBreak(ch); |
nothing calls this directly
no test coverage detected
searching dependent graphs…