1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:57:43 +00:00

LibJS: Make Script.h not include Parser.h

This commit is contained in:
Andreas Kling 2022-11-23 12:42:35 +01:00 committed by Linus Groh
parent e6331031c4
commit 8cb6484f6c

View file

@ -10,7 +10,7 @@
#include <LibJS/AST.h>
#include <LibJS/Heap/GCPtr.h>
#include <LibJS/Heap/Handle.h>
#include <LibJS/Parser.h>
#include <LibJS/ParserError.h>
#include <LibJS/Runtime/Realm.h>
namespace JS {