* 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)
| 871 | * definition the caller wants is never dropped below a search cut. |
| 872 | */ |
| 873 | getNodesByName(name: string): Node[] { |
| 874 | return this.queries.getNodesByName(name); |
| 875 | } |
| 876 | |
| 877 | /** |
| 878 | * Search nodes by text |
nothing calls this directly
no test coverage detected