summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Bytecode
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 /Userland/Libraries/LibJS/Bytecode
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 'Userland/Libraries/LibJS/Bytecode')
-rw-r--r--Userland/Libraries/LibJS/Bytecode/Op.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Bytecode/Op.cpp b/Userland/Libraries/LibJS/Bytecode/Op.cpp
index f8e69a7910..bf22532338 100644
--- a/Userland/Libraries/LibJS/Bytecode/Op.cpp
+++ b/Userland/Libraries/LibJS/Bytecode/Op.cpp
@@ -7,6 +7,7 @@
*/
#include <AK/HashTable.h>
+#include <LibJS/AST.h>
#include <LibJS/Bytecode/Interpreter.h>
#include <LibJS/Bytecode/Op.h>
#include <LibJS/Runtime/AbstractOperations.h>
@@ -22,6 +23,7 @@
#include <LibJS/Runtime/IteratorOperations.h>
#include <LibJS/Runtime/NativeFunction.h>
#include <LibJS/Runtime/ObjectEnvironment.h>
+#include <LibJS/Runtime/Reference.h>
#include <LibJS/Runtime/RegExpObject.h>
#include <LibJS/Runtime/Value.h>