mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
f87041bf3a
Resulting in a massive rename across almost everywhere! Alongside the namespace change, we now have the following names: * JS::NonnullGCPtr -> GC::Ref * JS::GCPtr -> GC::Ptr * JS::HeapFunction -> GC::Function * JS::CellImpl -> GC::Cell * JS::Handle -> GC::Root
34 lines
703 B
C++
34 lines
703 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);
|
|
GC_DECLARE_ALLOCATOR(SymbolObject);
|
|
|
|
public:
|
|
static GC::Ref<SymbolObject> create(Realm&, Symbol&);
|
|
|
|
virtual ~SymbolObject() override = default;
|
|
|
|
Symbol& primitive_symbol() { return m_symbol; }
|
|
Symbol const& primitive_symbol() const { return m_symbol; }
|
|
|
|
private:
|
|
SymbolObject(Symbol&, Object& prototype);
|
|
|
|
virtual void visit_edges(Visitor&) override;
|
|
|
|
GC::Ref<Symbol> m_symbol;
|
|
};
|
|
|
|
}
|