(this: StreamState, fd: number)
| 216 | } |
| 217 | |
| 218 | function streamOnOpen(this: StreamState, fd: number): void { |
| 219 | fstat(fd, (err, stats) => { |
| 220 | this.resolveMtime(err ? 0 : stats.mtimeMs) |
| 221 | }) |
| 222 | } |
| 223 | |
| 224 | function streamOnData(this: StreamState, chunk: string): void { |
| 225 | if (this.isFirstChunk) { |
nothing calls this directly
no outgoing calls
no test coverage detected