From 1a30e77001def4a26ab8c05b4bb7893cce40dbb0 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 23 Nov 2022 12:05:07 +0100 Subject: [PATCH] LibJS: Make Interpreter.h not include AST.h --- Userland/Libraries/LibJS/Forward.h | 1 + Userland/Libraries/LibJS/Interpreter.h | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibJS/Forward.h b/Userland/Libraries/LibJS/Forward.h index 061f205260..12cc1cddfe 100644 --- a/Userland/Libraries/LibJS/Forward.h +++ b/Userland/Libraries/LibJS/Forward.h @@ -164,6 +164,7 @@ class Error; class ErrorType; struct ExecutionContext; class Expression; +class ForStatement; class FunctionEnvironment; class FunctionNode; class GlobalEnvironment; diff --git a/Userland/Libraries/LibJS/Interpreter.h b/Userland/Libraries/LibJS/Interpreter.h index 478ecbfa1a..02cc1253eb 100644 --- a/Userland/Libraries/LibJS/Interpreter.h +++ b/Userland/Libraries/LibJS/Interpreter.h @@ -11,7 +11,6 @@ #include #include #include -#include #include #include #include