mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 16:42:44 +00:00 
			
		
		
		
	Just like the initial Temporal.TimeZone commit, this patch adds the Instant object itself, its constructor and prototype (currently empty), and two required abstract operations.
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <LibJS/Runtime/GlobalObject.h>
 | |
| #include <LibJS/Runtime/Temporal/InstantConstructor.h>
 | |
| #include <LibJS/Runtime/Temporal/Now.h>
 | |
| #include <LibJS/Runtime/Temporal/Temporal.h>
 | |
| #include <LibJS/Runtime/Temporal/TimeZoneConstructor.h>
 | |
| 
 | |
| namespace JS::Temporal {
 | |
| 
 | |
| // 1 The Temporal Object, https://tc39.es/proposal-temporal/#sec-temporal-objects
 | |
| Temporal::Temporal(GlobalObject& global_object)
 | |
|     : Object(*global_object.object_prototype())
 | |
| {
 | |
| }
 | |
| 
 | |
| void Temporal::initialize(GlobalObject& global_object)
 | |
| {
 | |
|     Object::initialize(global_object);
 | |
| 
 | |
|     auto& vm = this->vm();
 | |
|     u8 attr = Attribute::Writable | Attribute::Configurable;
 | |
| 
 | |
|     define_direct_property(vm.names.now, heap().allocate<Now>(global_object, global_object), attr);
 | |
|     define_direct_property(vm.names.Instant, global_object.temporal_instant_constructor(), attr);
 | |
|     define_direct_property(vm.names.TimeZone, global_object.temporal_time_zone_constructor(), attr);
 | |
| }
 | |
| 
 | |
| }
 |