ladybird/Userland/Libraries/LibJS/Runtime/SymbolObject.h
Andreas Kling 35c9aa7c05 LibJS: Hide all the constructors!
Now that the GC allocator is able to invoke Cell subclass constructors
directly via friendship, we no longer need to keep them public. :^)
2022-08-29 03:24:54 +02:00

36 lines
774 B
C++

/*
* Copyright (c) 2020, Matthew Olsson <mattco@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibJS/Runtime/Object.h>
#include <LibJS/Runtime/Symbol.h>
namespace JS {
class SymbolObject : public Object {
JS_OBJECT(SymbolObject, Object);
public:
static SymbolObject* create(Realm&, Symbol&);
virtual ~SymbolObject() override = default;
Symbol& primitive_symbol() { return m_symbol; }
Symbol const& primitive_symbol() const { return m_symbol; }
String description() const { return m_symbol.description(); }
bool is_global() const { return m_symbol.is_global(); }
private:
SymbolObject(Symbol&, Object& prototype);
virtual void visit_edges(Visitor&) override;
Symbol& m_symbol;
};
}