(args: IArguments)
| 99 | err: Error |
| 100 | |
| 101 | constructor(args: IArguments) { |
| 102 | this.startTime = performance.now() |
| 103 | this.args = args |
| 104 | // V8/JSC capture the stack at construction but defer the expensive string |
| 105 | // formatting until .stack is read — so this stays off the fast path. |
| 106 | this.err = new Error() |
| 107 | } |
| 108 | |
| 109 | [Symbol.dispose](): void { |
| 110 | const duration = performance.now() - this.startTime |
nothing calls this directly
no outgoing calls
no test coverage detected