1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 19:15:07 +00:00

LibJS+LibWeb: Move JS::ModuleRequest to its own header file

This allows us to not include LibJS/AST.h in a couple more places.
This commit is contained in:
Andreas Kling 2022-11-23 14:18:38 +01:00 committed by Linus Groh
parent 38c7fdaac1
commit 3503c658fb
7 changed files with 47 additions and 29 deletions

View file

@ -5,7 +5,7 @@
*/
#include <AK/URLParser.h>
#include <LibJS/AST.h>
#include <LibJS/Runtime/ModuleRequest.h>
#include <LibWeb/HTML/Scripting/Environments.h>
#include <LibWeb/HTML/Scripting/Fetching.h>
#include <LibWeb/HTML/Scripting/ModuleScript.h>