LibJS: Make AsyncGenerator not include AsyncGeneratorRequest.h

This commit is contained in:
Andreas Kling 2022-11-23 11:44:43 +01:00 committed by Linus Groh
parent 58feae8b60
commit 9ff02ad42c
3 changed files with 2 additions and 1 deletions

View file

@ -147,6 +147,7 @@ namespace JS {
class ASTNode;
class Accessor;
struct AsyncGeneratorRequest;
class BigInt;
class BoundFunction;
class Cell;

View file

@ -6,6 +6,7 @@
#include <LibJS/Runtime/AsyncGenerator.h>
#include <LibJS/Runtime/AsyncGeneratorPrototype.h>
#include <LibJS/Runtime/AsyncGeneratorRequest.h>
#include <LibJS/Runtime/GlobalObject.h>
namespace JS {

View file

@ -7,7 +7,6 @@
#pragma once
#include <AK/Variant.h>
#include <LibJS/Runtime/AsyncGeneratorRequest.h>
#include <LibJS/Runtime/ExecutionContext.h>
#include <LibJS/Runtime/Object.h>