summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Runtime/DateConstructor.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-09-27 20:18:30 +0200
committerAndreas Kling <kling@serenityos.org>2020-09-27 20:26:58 +0200
commit2bc5bc64fbbf77eeb6b0bb4c90026cca91441f5d (patch)
treed73ffe547870e665aacba477ea164d0a2d068c49 /Libraries/LibJS/Runtime/DateConstructor.cpp
parent861815596fdaef0fb109c919d1d0844593fbf73a (diff)
downloadserenity-2bc5bc64fbbf77eeb6b0bb4c90026cca91441f5d.zip
LibJS: Remove a whole bunch of includes of <LibJS/Interpreter.h>
Diffstat (limited to 'Libraries/LibJS/Runtime/DateConstructor.cpp')
-rw-r--r--Libraries/LibJS/Runtime/DateConstructor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibJS/Runtime/DateConstructor.cpp b/Libraries/LibJS/Runtime/DateConstructor.cpp
index 32b8be3033..e4c2abec22 100644
--- a/Libraries/LibJS/Runtime/DateConstructor.cpp
+++ b/Libraries/LibJS/Runtime/DateConstructor.cpp
@@ -27,10 +27,10 @@
#include <AK/GenericLexer.h>
#include <LibCore/DateTime.h>
-#include <LibJS/Interpreter.h>
#include <LibJS/Runtime/Date.h>
#include <LibJS/Runtime/DateConstructor.h>
#include <LibJS/Runtime/GlobalObject.h>
+#include <LibJS/Runtime/VM.h>
#include <ctype.h>
#include <sys/time.h>
#include <time.h>