(fileName: string, position: number)
| 74 | } |
| 75 | |
| 76 | function getQuickInfoAtPosition(fileName: string, position: number): ts.QuickInfo | undefined { |
| 77 | return withFallback(fileName, (ls) => ls.getQuickInfoAtPosition(fileName, position)); |
| 78 | } |
| 79 | |
| 80 | function getTypeDefinitionAtPosition( |
| 81 | fileName: string, |
nothing calls this directly
no test coverage detected
searching dependent graphs…