summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Module.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-11-23 11:41:19 +0100
committerLinus Groh <mail@linusgroh.de>2022-11-23 16:05:59 +0000
commit58feae8b6064db5eacce5aa845c02adf143ea99f (patch)
tree915d8e3e8d8b753830c87ff755553f27b31c0430 /Userland/Libraries/LibJS/Module.cpp
parent96cbf368bd6bf051d49784a6db563c630a2b97e5 (diff)
downloadserenity-58feae8b6064db5eacce5aa845c02adf143ea99f.zip
LibJS: Make CyclicModule.h not include PromiseCapability.h
Diffstat (limited to 'Userland/Libraries/LibJS/Module.cpp')
-rw-r--r--Userland/Libraries/LibJS/Module.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Module.cpp b/Userland/Libraries/LibJS/Module.cpp
index 0baabada4e..c5ba4cdc67 100644
--- a/Userland/Libraries/LibJS/Module.cpp
+++ b/Userland/Libraries/LibJS/Module.cpp
@@ -8,6 +8,8 @@
#include <LibJS/CyclicModule.h>
#include <LibJS/Module.h>
#include <LibJS/Runtime/ModuleNamespaceObject.h>
+#include <LibJS/Runtime/Promise.h>
+#include <LibJS/Runtime/VM.h>
namespace JS {