1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 08:18:12 +00:00

LibJS+LibWeb: Make Runtime/AbstractOperations.h not include AST.h

This led to considerable fallout and many files had to be patched with
now-missing include statements.
This commit is contained in:
Andreas Kling 2022-11-23 13:41:50 +01:00 committed by Linus Groh
parent b81816a539
commit 71067cbc6c
33 changed files with 33 additions and 1 deletions

View file

@ -2838,6 +2838,7 @@ void generate_iterator_prototype_implementation(IDL::Interface const& interface)
generator.append(R"~~~(
#include <AK/Function.h>
#include <AK/TypeCasts.h>
#include <LibJS/Runtime/Array.h>
#include <LibJS/Runtime/Error.h>
#include <LibJS/Runtime/FunctionObject.h>