mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 15:44:57 +00:00

This is not strictly connected to PromiseReaction in any way. Preparation before doing some actual work on it :^)
20 lines
467 B
C++
20 lines
467 B
C++
/*
|
|
* Copyright (c) 2022, Linus Groh <linusg@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibJS/Runtime/Completion.h>
|
|
#include <LibJS/Runtime/PromiseCapability.h>
|
|
|
|
namespace JS {
|
|
|
|
// 27.6.3.1 AsyncGeneratorRequest Records, https://tc39.es/ecma262/#sec-asyncgeneratorrequest-records
|
|
struct AsyncGeneratorRequest {
|
|
Completion completion; // [[Completion]]
|
|
PromiseCapability capability; // [[Capability]]
|
|
};
|
|
|
|
}
|