(rel: string)
| 65 | }; |
| 66 | |
| 67 | export function langForFile(rel: string): string | null { |
| 68 | return detectLanguage(rel); |
| 69 | } |
| 70 | |
| 71 | /** Best-effort name extraction for a declaration node. */ |
| 72 | function extractSymbolName(node: any, source: string): string | undefined { |
no test coverage detected