LibJS+LibWeb: Make CyclicModule.h not include AST.h

This led to some fallout as many things in LibJS and LibWeb were pulling
in other things via CyclicModule.h
This commit is contained in:
Andreas Kling 2022-11-23 13:28:01 +01:00 committed by Linus Groh
parent d16b808e71
commit b81816a539
Notes: sideshowbarker 2024-07-17 04:11:58 +09:00
11 changed files with 11 additions and 1 deletions

View file

@ -4,6 +4,7 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibJS/AST.h>
#include <LibJS/Interpreter.h>
#include <LibWeb/HTML/Scripting/Environments.h>
#include <LibWeb/HTML/Scripting/Fetching.h>