summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/AsyncGeneratorRequest.h
blob: 14270be7b18b7d829e834e3d9dfef5fe490b5fa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Copyright (c) 2022, Linus Groh <linusg@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <LibJS/Runtime/Completion.h>
#include <LibJS/Runtime/PromiseReaction.h>

namespace JS {

// 27.6.3.1 AsyncGeneratorRequest Records, https://tc39.es/ecma262/#sec-asyncgeneratorrequest-records
struct AsyncGeneratorRequest {
    Completion completion;        // [[Completion]]
    PromiseCapability capability; // [[Capability]]
};

}