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

LibJS: Add JS_CELL macro and use it in all JS::Cell subclasses

This is similar to what we already had with JS_OBJECT (and also
JS_ENVIRONMENT) but sits at the top of the Cell inheritance hierarchy.
This commit is contained in:
Andreas Kling 2022-08-28 22:11:20 +02:00
parent 94f016b363
commit 6e973ce69b
16 changed files with 37 additions and 23 deletions

View file

@ -13,6 +13,7 @@
namespace JS {
class Symbol final : public Cell {
JS_CELL(Symbol, Cell);
AK_MAKE_NONCOPYABLE(Symbol);
AK_MAKE_NONMOVABLE(Symbol);
@ -26,8 +27,6 @@ public:
String to_string() const { return String::formatted("Symbol({})", description()); }
private:
virtual StringView class_name() const override { return "Symbol"sv; }
Optional<String> m_description;
bool m_is_global;
};