mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 11:12:45 +00:00 
			
		
		
		
	LibJS: Rename PropertyName to PropertyKey
Let's use the same name as the spec. :^)
This commit is contained in:
		
							parent
							
								
									715e7fada8
								
							
						
					
					
						commit
						398c181c79
					
				
					 55 changed files with 287 additions and 287 deletions
				
			
		|  | @ -21,8 +21,8 @@ class DebuggerGlobalJSObject final | |||
| public: | ||||
|     DebuggerGlobalJSObject(); | ||||
| 
 | ||||
|     virtual JS::ThrowCompletionOr<JS::Value> internal_get(JS::PropertyName const&, JS::Value receiver) const override; | ||||
|     virtual JS::ThrowCompletionOr<bool> internal_set(JS::PropertyName const&, JS::Value value, JS::Value receiver) override; | ||||
|     virtual JS::ThrowCompletionOr<JS::Value> internal_get(JS::PropertyKey const&, JS::Value receiver) const override; | ||||
|     virtual JS::ThrowCompletionOr<bool> internal_set(JS::PropertyKey const&, JS::Value value, JS::Value receiver) override; | ||||
| 
 | ||||
|     Optional<JS::Value> debugger_to_js(const Debug::DebugInfo::VariableInfo&) const; | ||||
|     Optional<u32> js_to_debugger(JS::Value value, const Debug::DebugInfo::VariableInfo&) const; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Andreas Kling
						Andreas Kling