(...args)
| 459 | } |
| 460 | |
| 461 | function _errnoException(...args) { |
| 462 | if (isErrorStackTraceLimitWritable()) { |
| 463 | const limit = Error.stackTraceLimit; |
| 464 | Error.stackTraceLimit = 0; |
| 465 | const e = new ErrnoException(...args); |
| 466 | Error.stackTraceLimit = limit; |
| 467 | ErrorCaptureStackTrace(e, _errnoException); |
| 468 | return e; |
| 469 | } |
| 470 | return new ErrnoException(...args); |
| 471 | } |
| 472 | |
| 473 | function _exceptionWithHostPort(...args) { |
| 474 | if (isErrorStackTraceLimitWritable()) { |
no test coverage detected
searching dependent graphs…