summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/SymbolObject.cpp
diff options
context:
space:
mode:
authorBrian Gianforcaro <bgianf@serenityos.org>2021-07-31 00:47:13 -0700
committerGunnar Beutner <gunnar@beutner.name>2021-08-01 08:10:16 +0200
commit53166c10ca4eda08877852620b9c111bd3505f84 (patch)
tree374cb34d7e41d86ed6cd25921626c18183614e00 /Userland/Libraries/LibJS/Runtime/SymbolObject.cpp
parentb10657a2b6e2109cd399965911f10001f2eb3094 (diff)
downloadserenity-53166c10ca4eda08877852620b9c111bd3505f84.zip
LibJS: Remove unused header includes
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/SymbolObject.cpp')
-rw-r--r--Userland/Libraries/LibJS/Runtime/SymbolObject.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/SymbolObject.cpp b/Userland/Libraries/LibJS/Runtime/SymbolObject.cpp
index ad879e43c8..9dbbb836a9 100644
--- a/Userland/Libraries/LibJS/Runtime/SymbolObject.cpp
+++ b/Userland/Libraries/LibJS/Runtime/SymbolObject.cpp
@@ -4,12 +4,9 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
-#include <LibJS/Heap/Heap.h>
#include <LibJS/Runtime/GlobalObject.h>
#include <LibJS/Runtime/Symbol.h>
#include <LibJS/Runtime/SymbolObject.h>
-#include <LibJS/Runtime/SymbolPrototype.h>
-#include <LibJS/Runtime/Value.h>
namespace JS {