(key)
| 397 | } |
| 398 | |
| 399 | function makeSystemErrorWithCode(key) { |
| 400 | return class NodeError extends SystemError { |
| 401 | constructor(ctx) { |
| 402 | super(key, ctx); |
| 403 | } |
| 404 | }; |
| 405 | } |
| 406 | |
| 407 | // This is a special error type that is only used for the E function. |
| 408 | class HideStackFramesError extends Error { |
no outgoing calls
no test coverage detected
searching dependent graphs…