(fileName: string)
| 56 | } |
| 57 | |
| 58 | function getSuggestionDiagnostics(fileName: string): ts.DiagnosticWithLocation[] { |
| 59 | const diagnostics: ts.DiagnosticWithLocation[] = []; |
| 60 | if (!angularOnly && isTypeScriptFile(fileName)) { |
| 61 | diagnostics.push(...tsLS.getSuggestionDiagnostics(fileName)); |
| 62 | } |
| 63 | diagnostics.push(...ngLS.getSuggestionDiagnostics(fileName)); |
| 64 | return diagnostics; |
| 65 | } |
| 66 | |
| 67 | function getSemanticDiagnostics(fileName: string): ts.Diagnostic[] { |
| 68 | const diagnostics: ts.Diagnostic[] = []; |
nothing calls this directly
no test coverage detected
searching dependent graphs…