diff options
author | Andreas Kling <kling@serenityos.org> | 2022-11-23 13:28:01 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-11-23 16:05:59 +0000 |
commit | b81816a5395b80ee23932641fe4623bb08432e84 (patch) | |
tree | 469ccc58be9c02e455a10a2ed00bc1c3cd2511c6 /Userland/Libraries/LibJS/SourceTextModule.cpp | |
parent | d16b808e710a0ea5e58176b89beb83ab98efc9b7 (diff) | |
download | serenity-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 'Userland/Libraries/LibJS/SourceTextModule.cpp')
-rw-r--r-- | Userland/Libraries/LibJS/SourceTextModule.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/SourceTextModule.cpp b/Userland/Libraries/LibJS/SourceTextModule.cpp index db9af9e3f2..5bffc7b011 100644 --- a/Userland/Libraries/LibJS/SourceTextModule.cpp +++ b/Userland/Libraries/LibJS/SourceTextModule.cpp @@ -7,6 +7,7 @@ #include <AK/QuickSort.h> #include <LibJS/Interpreter.h> +#include <LibJS/Parser.h> #include <LibJS/Runtime/ECMAScriptFunctionObject.h> #include <LibJS/Runtime/ModuleEnvironment.h> #include <LibJS/SourceTextModule.h> |