(diagnostics)
| 122772 | } |
| 122773 | ts.parseConfigFileWithSystem = parseConfigFileWithSystem; |
| 122774 | function getErrorCountForSummary(diagnostics) { |
| 122775 | return ts.countWhere(diagnostics, function (diagnostic) { return diagnostic.category === ts.DiagnosticCategory.Error; }); |
| 122776 | } |
| 122777 | ts.getErrorCountForSummary = getErrorCountForSummary; |
| 122778 | function getFilesInErrorForSummary(diagnostics) { |
| 122779 | var filesInError = ts.filter(diagnostics, function (diagnostic) { return diagnostic.category === ts.DiagnosticCategory.Error; }) |
no outgoing calls
no test coverage detected