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

Function getCompletionEntrySymbol

packages/language-service/src/ts_plugin.ts:190–202  ·  view source on GitHub ↗
(
    fileName: string,
    position: number,
    name: string,
    source: string | undefined,
  )

Source from the content-addressed store, hash-verified

188 }
189
190 function getCompletionEntrySymbol(
191 fileName: string,
192 position: number,
193 name: string,
194 source: string | undefined,
195 ): ts.Symbol | undefined {
196 return withFallback(fileName, (ls) => {
197 if (ls === tsLS) {
198 return tsLS.getCompletionEntrySymbol(fileName, position, name, source);
199 }
200 return ngLS.getCompletionEntrySymbol(fileName, position, name);
201 });
202 }
203 /**
204 * Gets global diagnostics related to the program configuration and compiler options.
205 */

Callers

nothing calls this directly

Calls 2

withFallbackFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…