* Get all nodes of a specific kind
(kind: Node['kind'])
| 1265 | * Get all nodes of a specific kind |
| 1266 | */ |
| 1267 | getNodesByKind(kind: Node['kind']): Node[] { |
| 1268 | return this.queries.getNodesByKind(kind); |
| 1269 | } |
| 1270 | |
| 1271 | /** |
| 1272 | * Get ALL nodes with an exact name (direct index lookup, not FTS-ranked/capped). |
nothing calls this directly
no test coverage detected