diff options
author | Andreas Kling <kling@serenityos.org> | 2022-11-23 13:41:50 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-11-23 16:05:59 +0000 |
commit | 71067cbc6c8cc2b9a8e5675e328898074c8fac3d (patch) | |
tree | c0ffa65a1a725714030bfc0cd498bb83db23b3c0 /Userland/Libraries/LibJS/Bytecode | |
parent | b81816a5395b80ee23932641fe4623bb08432e84 (diff) | |
download | serenity-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.cpp | 2 |
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> |