* Get all symbols exported by a file * * @param filePath - Path to the file * @returns Array of exported nodes
(filePath: string)
| 149 | * @returns Array of exported nodes |
| 150 | */ |
| 151 | getExportedSymbols(filePath: string): Node[] { |
| 152 | const nodes = this.queries.getNodesByFile(filePath); |
| 153 | return nodes.filter((n) => n.isExported); |
| 154 | } |
| 155 | |
| 156 | /** |
| 157 | * Find symbols by qualified name pattern |
nothing calls this directly
no test coverage detected