(filepath: string)
| 167 | } |
| 168 | |
| 169 | export const getFullLanguageName = (filepath: string) => { |
| 170 | const extension = getUriFileExtension(filepath); |
| 171 | return supportedLanguages[extension]; |
| 172 | }; |
| 173 | |
| 174 | export async function getQueryForFile( |
| 175 | filepath: string, |
no test coverage detected