()
| 4593 | Promise._peekContext = Promise.prototype._peekContext = function() {}; |
| 4594 | |
| 4595 | function Context() { |
| 4596 | this._trace = new Context.CapturedTrace(peekContext()); |
| 4597 | } |
| 4598 | Context.prototype._pushContext = function () { |
| 4599 | if (this._trace !== undefined) { |
| 4600 | this._trace._promiseCreated = null; |
nothing calls this directly
no test coverage detected