diff options
author | Andreas Kling <kling@serenityos.org> | 2022-02-07 18:51:58 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-02-07 19:16:46 +0100 |
commit | aeb72fe9d0a188c9e72b58ebad9618ff924af1f1 (patch) | |
tree | 93f34e6d060cf9ed75c4a2e2bda772896493cd46 /Userland/Libraries/LibJS/Runtime/FunctionConstructor.cpp | |
parent | 6ddbe8f953c77231a609ab9d12ee0e46d60fb0c8 (diff) | |
download | serenity-aeb72fe9d0a188c9e72b58ebad9618ff924af1f1.zip |
LibJS: Reduce header dependency graph in Realm.h
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/FunctionConstructor.cpp')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/FunctionConstructor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/FunctionConstructor.cpp b/Userland/Libraries/LibJS/Runtime/FunctionConstructor.cpp index ebeb2e80a0..2a75c27fca 100644 --- a/Userland/Libraries/LibJS/Runtime/FunctionConstructor.cpp +++ b/Userland/Libraries/LibJS/Runtime/FunctionConstructor.cpp @@ -13,6 +13,7 @@ #include <LibJS/Runtime/FunctionConstructor.h> #include <LibJS/Runtime/FunctionObject.h> #include <LibJS/Runtime/GeneratorPrototype.h> +#include <LibJS/Runtime/GlobalEnvironment.h> #include <LibJS/Runtime/GlobalObject.h> #include <LibJS/Runtime/Realm.h> |