ladybird/Userland/Libraries/LibJS/Runtime/SymbolObject.h
Linus Groh 038d354b5d LibJS: Remove Object::value_of()
Being really close to Object.prototype.valueOf() name wise makes this
unnecessarily confusing - while it sometimes serves as the
implementation of a valueOf() function, it's an abstraction which the
spec doesn't have.
Use the appropriate getters to retrieve specific internal slots instead,
most commonly [[FooData]] from the primitive wrapper objects.
For the Object class specifically, use the Value(Object*) ctor instead.
2021-12-10 22:52:36 +00:00

35 lines
770 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(GlobalObject&, Symbol&);
SymbolObject(Symbol&, Object& prototype);
virtual ~SymbolObject() override;
Symbol& primitive_symbol() { return m_symbol; }
const Symbol& primitive_symbol() const { return m_symbol; }
String description() const { return m_symbol.description(); }
bool is_global() const { return m_symbol.is_global(); }
private:
virtual void visit_edges(Visitor&) override;
Symbol& m_symbol;
};
}