(node, messageChain, relatedInformation)
| 15282 | } |
| 15283 | ts.createDiagnosticForNodeInSourceFile = createDiagnosticForNodeInSourceFile; |
| 15284 | function createDiagnosticForNodeFromMessageChain(node, messageChain, relatedInformation) { |
| 15285 | var sourceFile = getSourceFileOfNode(node); |
| 15286 | var span = getErrorSpanForNode(sourceFile, node); |
| 15287 | return createFileDiagnosticFromMessageChain(sourceFile, span.start, span.length, messageChain, relatedInformation); |
| 15288 | } |
| 15289 | ts.createDiagnosticForNodeFromMessageChain = createDiagnosticForNodeFromMessageChain; |
| 15290 | function assertDiagnosticLocation(file, start, length) { |
| 15291 | ts.Debug.assertGreaterThanOrEqual(start, 0); |
nothing calls this directly
no test coverage detected
searching dependent graphs…