* Get ALL nodes with an exact name (direct index lookup, not FTS-ranked/capped). * Used to enumerate every overload of a heavily-overloaded name so the specific * definition the caller wants is never dropped below a search cut.
(name: string)
| 1274 | * definition the caller wants is never dropped below a search cut. |
| 1275 | */ |
| 1276 | getNodesByName(name: string): Node[] { |
| 1277 | return this.queries.getNodesByName(name); |
| 1278 | } |
| 1279 | |
| 1280 | /** Nodes whose name starts with `prefix` (index range scan, capped). */ |
| 1281 | getNodesByNamePrefix(prefix: string, limit = 20): Node[] { |
nothing calls this directly
no test coverage detected