()
| 293 | } |
| 294 | |
| 295 | async* entries() { |
| 296 | try { |
| 297 | while (true) { |
| 298 | const result = await this.#readPromisified(); |
| 299 | if (result === null) { |
| 300 | break; |
| 301 | } |
| 302 | yield result; |
| 303 | } |
| 304 | } finally { |
| 305 | await this.#closePromisified(); |
| 306 | } |
| 307 | } |
| 308 | |
| 309 | [SymbolDispose]() { |
| 310 | if (this.#closed) return; |
no outgoing calls
no test coverage detected