(diags: ReadonlyArray<ts.Diagnostic> | undefined)
| 329 | const allDiagnostics: Array<ts.Diagnostic> = []; |
| 330 | |
| 331 | function checkDiagnostics(diags: ReadonlyArray<ts.Diagnostic> | undefined) { |
| 332 | if (diags) { |
| 333 | allDiagnostics.push(...diags); |
| 334 | return !hasErrors(diags); |
| 335 | } |
| 336 | return true; |
| 337 | } |
| 338 | |
| 339 | let checkOtherDiagnostics = true; |
| 340 | // Check parameter diagnostics |
no test coverage detected
searching dependent graphs…