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

LibJS: Add a new PrimitiveString class to hold GC-allocated strings

This commit is contained in:
Andreas Kling 2020-03-11 18:55:01 +01:00
parent 29c7a5dcbe
commit 111ef762f6
4 changed files with 97 additions and 0 deletions

View file

@ -34,6 +34,7 @@ class Heap;
class HeapBlock;
class Interpreter;
class Object;
class PrimitiveString;
class ScopeNode;
class Value;