diff options
author | Linus Groh <mail@linusgroh.de> | 2022-10-02 10:59:22 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-10-02 23:02:27 +0100 |
commit | c2326ec95a994c2e2e93fd39371e77014d6c26be (patch) | |
tree | 7b604a7b5c155f3c73432d0951c9ea53422fd489 /Userland/Libraries/LibJS/Runtime/PromiseJobs.cpp | |
parent | 4986fa262cbd5f60c76a79aa4f01384328eefde1 (diff) | |
download | serenity-c2326ec95a994c2e2e93fd39371e77014d6c26be.zip |
LibJS: Move PromiseCapability into its own cpp/h file
This is not strictly connected to PromiseReaction in any way.
Preparation before doing some actual work on it :^)
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/PromiseJobs.cpp')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/PromiseJobs.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/PromiseJobs.cpp b/Userland/Libraries/LibJS/Runtime/PromiseJobs.cpp index 15a579b188..a31ed65060 100644 --- a/Userland/Libraries/LibJS/Runtime/PromiseJobs.cpp +++ b/Userland/Libraries/LibJS/Runtime/PromiseJobs.cpp @@ -10,6 +10,7 @@ #include <LibJS/Runtime/GlobalObject.h> #include <LibJS/Runtime/JobCallback.h> #include <LibJS/Runtime/Promise.h> +#include <LibJS/Runtime/PromiseCapability.h> #include <LibJS/Runtime/PromiseJobs.h> #include <LibJS/Runtime/PromiseReaction.h> |