diff options
author | Andreas Kling <kling@serenityos.org> | 2022-11-23 12:51:56 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-11-23 16:05:59 +0000 |
commit | 97b5f4814e7cc03b716c51b221ceccd96df7de57 (patch) | |
tree | 37a86f21eaa4703123ec0fbdf7800f9c9385bed3 /Userland | |
parent | 65e7c58990f38e2e9c1a006842de7fe535a1514d (diff) | |
download | serenity-97b5f4814e7cc03b716c51b221ceccd96df7de57.zip |
LibJS: Make SourceTextModule.h not include AST.h or Parser.h
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Libraries/LibJS/SourceTextModule.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Libraries/LibJS/SourceTextModule.h b/Userland/Libraries/LibJS/SourceTextModule.h index 3d49fd6b6a..a672041280 100644 --- a/Userland/Libraries/LibJS/SourceTextModule.h +++ b/Userland/Libraries/LibJS/SourceTextModule.h @@ -7,10 +7,8 @@ #pragma once -#include <LibJS/AST.h> #include <LibJS/CyclicModule.h> #include <LibJS/Forward.h> -#include <LibJS/Parser.h> #include <LibJS/Runtime/ExecutionContext.h> namespace JS { |