summaryrefslogtreecommitdiff
path: root/Meta
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-11-23 13:41:50 +0100
committerLinus Groh <mail@linusgroh.de>2022-11-23 16:05:59 +0000
commit71067cbc6c8cc2b9a8e5675e328898074c8fac3d (patch)
treec0ffa65a1a725714030bfc0cd498bb83db23b3c0 /Meta
parentb81816a5395b80ee23932641fe4623bb08432e84 (diff)
downloadserenity-71067cbc6c8cc2b9a8e5675e328898074c8fac3d.zip
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.
Diffstat (limited to 'Meta')
-rw-r--r--Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/IDLGenerators.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/IDLGenerators.cpp b/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/IDLGenerators.cpp
index 49f3fa9d76..01859e556b 100644
--- a/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/IDLGenerators.cpp
+++ b/Meta/Lagom/Tools/CodeGenerators/LibWeb/BindingsGenerator/IDLGenerators.cpp
@@ -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>