diff options
author | AnotherTest <ali.mpfard@gmail.com> | 2020-08-25 22:18:32 +0430 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-26 08:45:01 +0200 |
commit | 394e4c04cd5dfdca56f67e6384288a209bdbf6dc (patch) | |
tree | 92332e13de789afa219e69a77fedb5806c513018 /Userland/test-web.cpp | |
parent | 521e730df107db3565880b79c6d6a7e66132787e (diff) | |
download | serenity-394e4c04cd5dfdca56f67e6384288a209bdbf6dc.zip |
LibJS: Add a helper for calling JS::Function's with arguments
The fact that a `MarkedValueList` had to be created was just annoying,
so here's an alternative.
This patchset also removes some (now) unneeded MarkedValueList.h includes.
Diffstat (limited to 'Userland/test-web.cpp')
-rw-r--r-- | Userland/test-web.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Userland/test-web.cpp b/Userland/test-web.cpp index 087a270a7f..8c35510350 100644 --- a/Userland/test-web.cpp +++ b/Userland/test-web.cpp @@ -41,10 +41,9 @@ #include <LibJS/Parser.h> #include <LibJS/Runtime/Array.h> #include <LibJS/Runtime/JSONObject.h> -#include <LibJS/Runtime/MarkedValueList.h> #include <LibWeb/HTML/Parser/HTMLDocumentParser.h> -#include <LibWeb/Loader/ResourceLoader.h> #include <LibWeb/InProcessWebView.h> +#include <LibWeb/Loader/ResourceLoader.h> #include <signal.h> #include <sys/time.h> |