(fd, buffer, offset, length, position)
| 356 | return undefined; |
| 357 | }, |
| 358 | readSync(fd, buffer, offset, length, position) { |
| 359 | const vfd = getVirtualFd(fd); |
| 360 | if (vfd) return vfd.entry.readSync(buffer, offset, length, position); |
| 361 | return undefined; |
| 362 | }, |
| 363 | writeSync(fd, buffer, offset, length, position) { |
| 364 | const vfd = getVirtualFd(fd); |
| 365 | if (vfd) return vfd.entry.writeSync(buffer, offset, length, position); |
nothing calls this directly
no test coverage detected
searching dependent graphs…