(node)
| 14556 | ts.getStartPositionOfLine = getStartPositionOfLine; |
| 14557 | // This is a useful function for debugging purposes. |
| 14558 | function nodePosToString(node) { |
| 14559 | var file = getSourceFileOfNode(node); |
| 14560 | var loc = ts.getLineAndCharacterOfPosition(file, node.pos); |
| 14561 | return "".concat(file.fileName, "(").concat(loc.line + 1, ",").concat(loc.character + 1, ")"); |
| 14562 | } |
| 14563 | ts.nodePosToString = nodePosToString; |
| 14564 | function getEndLinePosition(line, sourceFile) { |
| 14565 | ts.Debug.assert(line >= 0); |
nothing calls this directly
no test coverage detected
searching dependent graphs…