mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 07:32:44 +00:00 
			
		
		
		
	 72c9f56c66
			
		
	
	
		72c9f56c66
		
	
	
	
	
		
			
			Stop worrying about tiny OOMs. Work towards #20449. While going through these, I also changed the function signature in many places where returning ThrowCompletionOr<T> is no longer necessary.
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			535 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			535 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <LibJS/Runtime/GlobalObject.h>
 | |
| #include <LibJS/Runtime/NumberObject.h>
 | |
| 
 | |
| namespace JS {
 | |
| 
 | |
| NonnullGCPtr<NumberObject> NumberObject::create(Realm& realm, double value)
 | |
| {
 | |
|     return realm.heap().allocate<NumberObject>(realm, value, realm.intrinsics().number_prototype());
 | |
| }
 | |
| 
 | |
| NumberObject::NumberObject(double value, Object& prototype)
 | |
|     : Object(ConstructWithPrototypeTag::Tag, prototype)
 | |
|     , m_value(value)
 | |
| {
 | |
| }
 | |
| 
 | |
| }
 |