mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 19:12:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
	
		
			820 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			820 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, Matthew Olsson <mattco@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/String.h>
 | |
| #include <LibJS/Heap/Cell.h>
 | |
| 
 | |
| namespace JS {
 | |
| 
 | |
| class Symbol final : public Cell {
 | |
|     AK_MAKE_NONCOPYABLE(Symbol);
 | |
|     AK_MAKE_NONMOVABLE(Symbol);
 | |
| 
 | |
| public:
 | |
|     Symbol(String, bool);
 | |
|     virtual ~Symbol();
 | |
| 
 | |
|     const String& description() const { return m_description; }
 | |
|     bool is_global() const { return m_is_global; }
 | |
|     String to_string() const { return String::formatted("Symbol({})", description()); }
 | |
| 
 | |
| private:
 | |
|     virtual const char* class_name() const override { return "Symbol"; }
 | |
| 
 | |
|     String m_description;
 | |
|     bool m_is_global;
 | |
| };
 | |
| 
 | |
| Symbol* js_symbol(Heap&, String description, bool is_global);
 | |
| Symbol* js_symbol(VM&, String description, bool is_global);
 | |
| 
 | |
| }
 | 
