(
fileName: string,
position: number,
name: string,
source: string | undefined,
)
| 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 | */ |
nothing calls this directly
no test coverage detected
searching dependent graphs…