(parent)
| 5368 | } |
| 5369 | |
| 5370 | function CapturedTrace(parent) { |
| 5371 | this._parent = parent; |
| 5372 | this._promisesCreated = 0; |
| 5373 | var length = this._length = 1 + (parent === undefined ? 0 : parent._length); |
| 5374 | captureStackTrace(this, CapturedTrace); |
| 5375 | if (length > 32) this.uncycle(); |
| 5376 | } |
| 5377 | util.inherits(CapturedTrace, Error); |
| 5378 | Context.CapturedTrace = CapturedTrace; |
| 5379 |
nothing calls this directly
no outgoing calls
no test coverage detected