(promise, type, handler)
| 5874 | var errorObj = util.errorObj; |
| 5875 | |
| 5876 | function PassThroughHandlerContext(promise, type, handler) { |
| 5877 | this.promise = promise; |
| 5878 | this.type = type; |
| 5879 | this.handler = handler; |
| 5880 | this.called = false; |
| 5881 | this.cancelPromise = null; |
| 5882 | } |
| 5883 | |
| 5884 | PassThroughHandlerContext.prototype.isFinallyHandler = function() { |
| 5885 | return this.type === 0; |
nothing calls this directly
no outgoing calls
no test coverage detected