(message: string)
| 159 | } |
| 160 | |
| 161 | export function showDialog(message: string): void { |
| 162 | |
| 163 | void window.showInformationMessage(message); |
| 164 | |
| 165 | } |
| 166 | |
| 167 | export async function navigateToFile(file: string, line: number, column: number): Promise<void>{ |
| 168 |
no outgoing calls
no test coverage detected