LibJS: Make Interpreter.h not include AST.h

This commit is contained in:
Andreas Kling 2022-11-23 12:05:07 +01:00 committed by Linus Groh
parent ac417f3304
commit 1a30e77001
Notes: sideshowbarker 2024-07-17 06:40:35 +09:00
2 changed files with 1 additions and 1 deletions

View file

@ -164,6 +164,7 @@ class Error;
class ErrorType;
struct ExecutionContext;
class Expression;
class ForStatement;
class FunctionEnvironment;
class FunctionNode;
class GlobalEnvironment;

View file

@ -11,7 +11,6 @@
#include <AK/HashMap.h>
#include <AK/String.h>
#include <AK/Weakable.h>
#include <LibJS/AST.h>
#include <LibJS/Forward.h>
#include <LibJS/Heap/DeferGC.h>
#include <LibJS/Heap/Heap.h>