(dirent)
| 193 | } |
| 194 | |
| 195 | #readSyncRecursive(dirent) { |
| 196 | const path = pathModule.join(dirent.parentPath, dirent.name); |
| 197 | const handle = dirBinding.opendir( |
| 198 | path, |
| 199 | this.#options.encoding, |
| 200 | ); |
| 201 | |
| 202 | if (handle === undefined) { |
| 203 | return; |
| 204 | } |
| 205 | |
| 206 | ArrayPrototypePush(this.#handlerQueue, { handle, path }); |
| 207 | } |
| 208 | |
| 209 | readSync() { |
| 210 | if (this.#closed === true) { |