(fd)
| 475 | } |
| 476 | |
| 477 | function tryClose(fd) { |
| 478 | // Try to close the file descriptor. If closing fails, assert because |
| 479 | // an error really should not happen at this point. |
| 480 | fs.close(fd, assert.ifError); |
| 481 | } |
| 482 | |
| 483 | // Called when the Http2Stream has finished sending data and is ready for |
| 484 | // trailers to be sent. This will only be called if the { hasOptions: true } |
no test coverage detected
searching dependent graphs…