2022-05-05 06:47:36 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022, Linus Groh <linusg@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <LibJS/Runtime/Completion.h>
|
2022-10-02 09:59:22 +00:00
|
|
|
#include <LibJS/Runtime/PromiseCapability.h>
|
2022-05-05 06:47:36 +00:00
|
|
|
|
|
|
|
namespace JS {
|
|
|
|
|
|
|
|
// 27.6.3.1 AsyncGeneratorRequest Records, https://tc39.es/ecma262/#sec-asyncgeneratorrequest-records
|
|
|
|
struct AsyncGeneratorRequest {
|
2024-11-14 15:01:23 +00:00
|
|
|
Completion completion; // [[Completion]]
|
|
|
|
GC::Ref<PromiseCapability> capability; // [[Capability]]
|
2022-05-05 06:47:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|