* Get file path from node ID
(nodeId: string)
| 2076 | * Get file path from node ID |
| 2077 | */ |
| 2078 | private getFilePathFromNodeId(nodeId: string): string { |
| 2079 | const node = this.queries.getNodeById(nodeId); |
| 2080 | return node?.filePath || ''; |
| 2081 | } |
| 2082 | |
| 2083 | /** |
| 2084 | * Get language from node ID |
no test coverage detected