1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 09:04:59 +00:00

LibJS: Add missing headers

This commit is contained in:
Ben Wiederhake 2021-09-16 21:15:16 +02:00 committed by Linus Groh
parent 9d2e06b039
commit a95b321bf1
7 changed files with 8 additions and 0 deletions

View file

@ -8,6 +8,7 @@
#include <AK/FlyString.h>
#include <LibJS/Forward.h>
#include <LibJS/Runtime/PropertyName.h>
namespace JS {

View file

@ -6,6 +6,7 @@
#pragma once
#include <LibJS/AST.h>
#include <LibJS/Runtime/NativeFunction.h>
namespace JS {

View file

@ -8,6 +8,7 @@
#pragma once
#include <AK/Format.h>
#include <AK/String.h>
#include <AK/Types.h>
namespace JS {

View file

@ -9,6 +9,7 @@
#include <AK/Optional.h>
#include <LibJS/Runtime/Completion.h>
#include <LibJS/Runtime/Object.h>
#include <LibJS/Runtime/VM.h>
namespace JS::Temporal {

View file

@ -9,6 +9,8 @@
#include <AK/Optional.h>
#include <LibJS/Runtime/Object.h>
#include <LibJS/Runtime/Temporal/AbstractOperations.h>
#include <LibJS/Runtime/VM.h>
namespace JS::Temporal {

View file

@ -7,6 +7,7 @@
#pragma once
#include <AK/IntrusiveList.h>
#include <LibJS/Forward.h>
namespace JS {

View file

@ -6,6 +6,7 @@
#pragma once
#include <AK/StringView.h>
#include <AK/Types.h>
namespace JS {