mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
8213b73fa7
--HG-- extra : rebase_source : 7f32dd1222e4ab04f3f0cb4f450b734a4014c805
37 lines
1.5 KiB
Plaintext
37 lines
1.5 KiB
Plaintext
/* -*- 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
|
|
* http://dom.spec.whatwg.org/#promises
|
|
*/
|
|
|
|
// 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);
|
|
callback AnyCallback = any (any value);
|
|
|
|
[Func="mozilla::dom::Promise::EnabledForScope", Constructor(PromiseInit init)]
|
|
interface Promise {
|
|
// TODO bug 875289 - static Promise fulfill(any value);
|
|
|
|
// Disable the static methods when the interface object is supposed to be
|
|
// disabled, just in case some code decides to walk over to .constructor from
|
|
// the proto of a promise object or someone screws up and manages to create a
|
|
// Promise object in this scope without having resolved the interface object
|
|
// first.
|
|
[NewObject, Throws, Func="mozilla::dom::Promise::EnabledForScope"]
|
|
static Promise resolve(optional any value);
|
|
[NewObject, Throws, Func="mozilla::dom::Promise::EnabledForScope"]
|
|
static Promise reject(optional any value);
|
|
|
|
[NewObject]
|
|
Promise then(optional AnyCallback? fulfillCallback,
|
|
optional AnyCallback? rejectCallback);
|
|
|
|
[NewObject]
|
|
Promise catch(optional AnyCallback? rejectCallback);
|
|
};
|