* Lazily yield result rows one at a time instead of materializing the whole * set with `all()`. Use for unbounded scans (e.g. every function/method node) * so memory stays O(1) in the row count rather than O(rows) — see #610, where * `all()`-ing every symbol on a dense project spiked the he
(...params: any[])
| 21 | * `all()`-ing every symbol on a dense project spiked the heap into an OOM. |
| 22 | */ |
| 23 | iterate(...params: any[]): IterableIterator<any>; |
| 24 | } |
| 25 | |
| 26 | export interface SqliteDatabase { |
no outgoing calls
no test coverage detected