LibJS: Make FunctionEnvironment not include ECMAScriptFunctionObject.h

This commit is contained in:
Andreas Kling 2022-11-23 13:05:53 +01:00 committed by Linus Groh
parent 97b5f4814e
commit 2a531efc5d
Notes: sideshowbarker 2024-07-17 06:09:44 +09:00
2 changed files with 1 additions and 1 deletions

View file

@ -6,6 +6,7 @@
#include <LibJS/Interpreter.h>
#include <LibJS/Runtime/Completion.h>
#include <LibJS/Runtime/ECMAScriptFunctionObject.h>
#include <LibJS/Runtime/FunctionEnvironment.h>
#include <LibJS/Runtime/GlobalObject.h>

View file

@ -8,7 +8,6 @@
#include <LibJS/Runtime/Completion.h>
#include <LibJS/Runtime/DeclarativeEnvironment.h>
#include <LibJS/Runtime/ECMAScriptFunctionObject.h>
namespace JS {