-
Notifications
You must be signed in to change notification settings - Fork 54
/
AsyncFunction.h
60 lines (45 loc) · 1.88 KB
/
AsyncFunction.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: set ts=8 sts=2 et sw=2 tw=80:
* 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/. */
#ifndef vm_AsyncFunction_h
#define vm_AsyncFunction_h
#include "builtin/Promise.h"
#include "js/Class.h"
#include "vm/GeneratorObject.h"
#include "vm/JSContext.h"
#include "vm/JSObject.h"
namespace js {
class AsyncFunctionGeneratorObject;
// Resume the async function when the `await` operand resolves.
// Split into two functions depending on whether the awaited value was
// fulfilled or rejected.
MOZ_MUST_USE bool AsyncFunctionAwaitedFulfilled(
JSContext* cx, Handle<AsyncFunctionGeneratorObject*> generator,
HandleValue value);
MOZ_MUST_USE bool AsyncFunctionAwaitedRejected(
JSContext* cx, Handle<AsyncFunctionGeneratorObject*> generator,
HandleValue reason);
enum class AsyncFunctionResolveKind { Fulfill, Reject };
// Resolve the async function's promise object with the given value and then
// return the promise object.
JSObject* AsyncFunctionResolve(JSContext* cx,
Handle<AsyncFunctionGeneratorObject*> generator,
HandleValue valueOrReason,
AsyncFunctionResolveKind resolveKind);
class AsyncFunctionGeneratorObject : public AbstractGeneratorObject {
public:
enum {
PROMISE_SLOT = AbstractGeneratorObject::RESERVED_SLOTS,
RESERVED_SLOTS
};
static const JSClass class_;
static AsyncFunctionGeneratorObject* create(JSContext* cx,
HandleFunction asyncGen);
PromiseObject* promise() {
return &getFixedSlot(PROMISE_SLOT).toObject().as<PromiseObject>();
}
};
} // namespace js
#endif /* vm_AsyncFunction_h */