( out: Array<JSDocModelDiagnostic>, range: [number, number], diagnostics: ReadonlyArray<JSDocDiagnostic> )
| 2657 | } |
| 2658 | |
| 2659 | function addModelDiagnostics( |
| 2660 | out: Array<JSDocModelDiagnostic>, |
| 2661 | range: [number, number], |
| 2662 | diagnostics: ReadonlyArray<JSDocDiagnostic> |
| 2663 | ) { |
| 2664 | for (const item of diagnostics) out.push({ ...item, range }) |
| 2665 | } |
| 2666 | |
| 2667 | function addJSDocLinkDiagnostics( |
| 2668 | sourceFile: ts.SourceFile, |
no test coverage detected