summaryrefslogtreecommitdiff
path: root/Tests/LibJS/test-bytecode-js.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-11-23 13:28:01 +0100
committerLinus Groh <mail@linusgroh.de>2022-11-23 16:05:59 +0000
commitb81816a5395b80ee23932641fe4623bb08432e84 (patch)
tree469ccc58be9c02e455a10a2ed00bc1c3cd2511c6 /Tests/LibJS/test-bytecode-js.cpp
parentd16b808e710a0ea5e58176b89beb83ab98efc9b7 (diff)
downloadserenity-b81816a5395b80ee23932641fe4623bb08432e84.zip
LibJS+LibWeb: Make CyclicModule.h not include AST.h
This led to some fallout as many things in LibJS and LibWeb were pulling in other things via CyclicModule.h
Diffstat (limited to 'Tests/LibJS/test-bytecode-js.cpp')
-rw-r--r--Tests/LibJS/test-bytecode-js.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Tests/LibJS/test-bytecode-js.cpp b/Tests/LibJS/test-bytecode-js.cpp
index 90fe6acdf8..344267561d 100644
--- a/Tests/LibJS/test-bytecode-js.cpp
+++ b/Tests/LibJS/test-bytecode-js.cpp
@@ -4,6 +4,7 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
+#include <LibJS/AST.h>
#include <LibJS/Bytecode/Generator.h>
#include <LibJS/Bytecode/Interpreter.h>
#include <LibJS/Interpreter.h>