diff --git a/lib/private/Deferred.js b/lib/private/Deferred.js index 8f20f24..08beefa 100644 --- a/lib/private/Deferred.js +++ b/lib/private/Deferred.js @@ -738,10 +738,17 @@ Deferred.prototype.inspect = function (){ return '[Deferred]'; }; * > It provides a public API for accessing Deferred state such as `_timeout`. * * @returns {Dictionary} + * @property {Number?} timeout + * @property {Array?} @of {Dictionary} interruptions + * @property {String} type + * @property {String|Dictionary|Array} rule + * @property {String|Function?} handler + * @property {Boolean} isThenable */ Deferred.prototype.getInvocationInfo = function (){ return { - timeout: this._timeout + timeout: this._timeout, + interruptions: this._userlandAfterExecLCs }; };