(sourceFile, node, message, arg0, arg1, arg2, arg3)
| 15277 | } |
| 15278 | ts.createDiagnosticForNodeArray = createDiagnosticForNodeArray; |
| 15279 | function createDiagnosticForNodeInSourceFile(sourceFile, node, message, arg0, arg1, arg2, arg3) { |
| 15280 | var span = getErrorSpanForNode(sourceFile, node); |
| 15281 | return createFileDiagnostic(sourceFile, span.start, span.length, message, arg0, arg1, arg2, arg3); |
| 15282 | } |
| 15283 | ts.createDiagnosticForNodeInSourceFile = createDiagnosticForNodeInSourceFile; |
| 15284 | function createDiagnosticForNodeFromMessageChain(node, messageChain, relatedInformation) { |
| 15285 | var sourceFile = getSourceFileOfNode(node); |
no test coverage detected