1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:47:35 +00:00

LibJS: Move Cell.{cpp,h} from Runtime/ to Heap/

This commit is contained in:
Andreas Kling 2021-05-17 19:50:20 +02:00
parent ee6600ea24
commit 6714cf3631
12 changed files with 11 additions and 11 deletions

View file

@ -9,7 +9,7 @@
#include <AK/HashMap.h>
#include <AK/OwnPtr.h>
#include <LibJS/Forward.h>
#include <LibJS/Runtime/Cell.h>
#include <LibJS/Heap/Cell.h>
#include <LibJS/Runtime/PropertyAttributes.h>
#include <LibJS/Runtime/StringOrSymbol.h>
#include <LibJS/Runtime/Value.h>