(
fileName: string,
position: number,
)
| 92 | } |
| 93 | |
| 94 | function getDefinitionAtPosition( |
| 95 | fileName: string, |
| 96 | position: number, |
| 97 | ): readonly ts.DefinitionInfo[] | undefined { |
| 98 | return getDefinitionAndBoundSpan(fileName, position)?.definitions; |
| 99 | } |
| 100 | |
| 101 | function getReferencesAtPosition( |
| 102 | fileName: string, |
nothing calls this directly
no test coverage detected
searching dependent graphs…