(sourceFile)
| 10336 | ts.computePositionOfLineAndCharacter = computePositionOfLineAndCharacter; |
| 10337 | /* @internal */ |
| 10338 | function getLineStarts(sourceFile) { |
| 10339 | return sourceFile.lineMap || (sourceFile.lineMap = computeLineStarts(sourceFile.text)); |
| 10340 | } |
| 10341 | ts.getLineStarts = getLineStarts; |
| 10342 | /* @internal */ |
| 10343 | function computeLineAndCharacterOfPosition(lineStarts, position) { |
no test coverage detected
searching dependent graphs…