mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	Now that the GC allocator is able to invoke Cell subclass constructors directly via friendship, we no longer need to keep them public. :^)
		
			
				
	
	
		
			36 lines
		
	
	
	
		
			774 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			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;
 | 
						|
};
 | 
						|
 | 
						|
}
 |