Home | History | Annotate | Download | only in js

Lines Matching refs:then

249       var then = resolution.then;
257 if (IsPromise(resolution) && then === PromiseThen) {
280 if (IS_CALLABLE(then)) {
291 %_Call(then, resolution, callbacks.resolve, callbacks.reject);
394 // ES#sec-promise.prototype.then
395 // Promise.prototype.then ( onFulfilled, onRejected )
431 // Chain is left around for now as an alias for then
440 return this.then(UNDEFINED, onReject);
489 nextPromise.then(
519 this.resolve(value).then(deferred.resolve, deferred.reject);
589 "then", PromiseThen,