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