From d16b808e710a0ea5e58176b89beb83ab98efc9b7 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 23 Nov 2022 13:14:15 +0100 Subject: [PATCH] LibJS: Make ECMAScriptFunctionObject.h not include AST.h --- Userland/Libraries/LibJS/Runtime/ECMAScriptFunctionObject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibJS/Runtime/ECMAScriptFunctionObject.h b/Userland/Libraries/LibJS/Runtime/ECMAScriptFunctionObject.h index 79b6b898c7..4113741a15 100644 --- a/Userland/Libraries/LibJS/Runtime/ECMAScriptFunctionObject.h +++ b/Userland/Libraries/LibJS/Runtime/ECMAScriptFunctionObject.h @@ -7,8 +7,8 @@ #pragma once -#include #include +#include #include #include