MCPcopy Index your code
hub / github.com/angular/angular / getSuggestionDiagnostics

Function getSuggestionDiagnostics

packages/language-service/src/ts_plugin.ts:58–65  ·  view source on GitHub ↗
(fileName: string)

Source from the content-addressed store, hash-verified

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[] = [];

Callers

nothing calls this directly

Calls 3

isTypeScriptFileFunction · 0.90
pushMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…