2013-06-12 05:41:21 +04:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
2013-07-12 00:40:36 +04:00
|
|
|
* http://dom.spec.whatwg.org/#promises
|
2013-06-12 05:41:21 +04:00
|
|
|
*/
|
|
|
|
|
2013-09-11 20:03:04 +04:00
|
|
|
// TODO We use object instead Function. There is an open issue on WebIDL to
|
|
|
|
// have different types for "platform-provided function" and "user-provided
|
|
|
|
// function"; for now, we just use "object".
|
|
|
|
callback PromiseInit = void (object resolve, object reject);
|
2014-01-28 22:14:57 +04:00
|
|
|
|
|
|
|
[TreatNonCallableAsNull]
|
2013-11-19 22:39:51 +04:00
|
|
|
callback AnyCallback = any (any value);
|
2013-06-12 05:41:21 +04:00
|
|
|
|
2014-01-31 01:14:07 +04:00
|
|
|
// REMOVE THE RELEVANT ENTRY FROM test_interfaces.html WHEN THIS IS IMPLEMENTED IN JS.
|
2014-08-05 06:20:34 +04:00
|
|
|
[Constructor(PromiseInit init),
|
2014-10-20 06:27:36 +04:00
|
|
|
Exposed=(Window,Worker,System)]
|
2014-08-01 07:50:30 +04:00
|
|
|
// Need to escape "Promise" so it's treated as an identifier.
|
|
|
|
interface _Promise {
|
2015-11-25 23:48:09 +03:00
|
|
|
// Have to use "any" (or "object", but "any" is simpler) as the type to
|
|
|
|
// support the subclassing behavior, since nothing actually requires the
|
|
|
|
// return value of PromiseSubclass.resolve/reject to be a Promise object.
|
|
|
|
[NewObject, Throws]
|
|
|
|
static any resolve(optional any value);
|
2015-11-26 08:02:55 +03:00
|
|
|
[NewObject]
|
|
|
|
static Promise<void> reject(optional any value);
|
2013-06-12 05:41:22 +04:00
|
|
|
|
2014-01-28 22:14:57 +04:00
|
|
|
// The [TreatNonCallableAsNull] annotation is required since then() should do
|
|
|
|
// nothing instead of throwing errors when non-callable arguments are passed.
|
2015-11-26 08:02:55 +03:00
|
|
|
[NewObject, MethodIdentityTestable]
|
|
|
|
Promise<any> then([TreatNonCallableAsNull] optional AnyCallback? fulfillCallback = null,
|
|
|
|
[TreatNonCallableAsNull] optional AnyCallback? rejectCallback = null);
|
2013-06-12 05:41:22 +04:00
|
|
|
|
2015-11-26 08:02:55 +03:00
|
|
|
[NewObject]
|
|
|
|
Promise<any> catch([TreatNonCallableAsNull] optional AnyCallback? rejectCallback = null);
|
2013-11-20 01:53:00 +04:00
|
|
|
|
2015-11-25 23:48:09 +03:00
|
|
|
// Have to use "any" (or "object", but "any" is simpler) as the type to
|
|
|
|
// support the subclassing behavior, since nothing actually requires the
|
|
|
|
// return value of PromiseSubclass.all to be a Promise object. As a result,
|
|
|
|
// we also have to do our argument conversion manually, because we want to
|
|
|
|
// convert its exceptions into rejections.
|
|
|
|
[NewObject, Throws]
|
|
|
|
static any all(optional any iterable);
|
2013-11-20 01:53:00 +04:00
|
|
|
|
2015-11-25 23:48:09 +03:00
|
|
|
// Have to use "any" (or "object", but "any" is simpler) as the type to
|
|
|
|
// support the subclassing behavior, since nothing actually requires the
|
|
|
|
// return value of PromiseSubclass.race to be a Promise object. As a result,
|
|
|
|
// we also have to do our argument conversion manually, because we want to
|
|
|
|
// convert its exceptions into rejections.
|
|
|
|
[NewObject, Throws]
|
|
|
|
static any race(optional any iterable);
|
2013-06-12 05:41:21 +04:00
|
|
|
};
|