mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:42:43 +00:00 
			
		
		
		
	 35c9aa7c05
			
		
	
	
		35c9aa7c05
		
	
	
	
	
		
			
			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;
 | |
| };
 | |
| 
 | |
| }
 |