Browse Source

LibJS: Correct section IDs of Temporal .prototype property clauses

This is an editorial change in the Temporal spec.

See: https://github.com/tc39/proposal-temporal/commit/e4eb181
Linus Groh 3 years ago
parent
commit
c3f1d8f5ba

+ 1 - 1
Userland/Libraries/LibJS/Runtime/Temporal/CalendarConstructor.cpp

@@ -22,7 +22,7 @@ void CalendarConstructor::initialize(GlobalObject& global_object)
 
     auto& vm = this->vm();
 
-    // 12.3.1 Temporal.Calendar.prototype, https://tc39.es/proposal-temporal/#sec-temporal-calendar-prototype
+    // 12.3.1 Temporal.Calendar.prototype, https://tc39.es/proposal-temporal/#sec-temporal.calendar.prototype
     define_direct_property(vm.names.prototype, global_object.temporal_calendar_prototype(), 0);
 
     u8 attr = Attribute::Writable | Attribute::Configurable;

+ 1 - 1
Userland/Libraries/LibJS/Runtime/Temporal/DurationConstructor.cpp

@@ -25,7 +25,7 @@ void DurationConstructor::initialize(GlobalObject& global_object)
 
     auto& vm = this->vm();
 
-    // 7.2.1 Temporal.Duration.prototype, https://tc39.es/proposal-temporal/#sec-temporal-duration-prototype
+    // 7.2.1 Temporal.Duration.prototype, https://tc39.es/proposal-temporal/#sec-temporal.duration.prototype
     define_direct_property(vm.names.prototype, global_object.temporal_duration_prototype(), 0);
 
     u8 attr = Attribute::Writable | Attribute::Configurable;

+ 2 - 2
Userland/Libraries/LibJS/Runtime/Temporal/InstantConstructor.cpp

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
+ * Copyright (c) 2021-2022, Linus Groh <linusg@serenityos.org>
  *
  * SPDX-License-Identifier: BSD-2-Clause
  */
@@ -24,7 +24,7 @@ void InstantConstructor::initialize(GlobalObject& global_object)
 
     auto& vm = this->vm();
 
-    // 8.2.1 Temporal.Instant.prototype, https://tc39.es/proposal-temporal/#sec-temporal-instant-prototype
+    // 8.2.1 Temporal.Instant.prototype, https://tc39.es/proposal-temporal/#sec-temporal.instant.prototype
     define_direct_property(vm.names.prototype, global_object.temporal_instant_prototype(), 0);
 
     u8 attr = Attribute::Writable | Attribute::Configurable;

+ 1 - 1
Userland/Libraries/LibJS/Runtime/Temporal/PlainDateConstructor.cpp

@@ -26,7 +26,7 @@ void PlainDateConstructor::initialize(GlobalObject& global_object)
 
     auto& vm = this->vm();
 
-    // 3.2.1 Temporal.PlainDate.prototype, https://tc39.es/proposal-temporal/#sec-temporal-plaindate-prototype
+    // 3.2.1 Temporal.PlainDate.prototype, https://tc39.es/proposal-temporal/#sec-temporal.plaindate.prototype
     define_direct_property(vm.names.prototype, global_object.temporal_plain_date_prototype(), 0);
 
     u8 attr = Attribute::Writable | Attribute::Configurable;

+ 1 - 1
Userland/Libraries/LibJS/Runtime/Temporal/PlainDateTimeConstructor.cpp

@@ -26,7 +26,7 @@ void PlainDateTimeConstructor::initialize(GlobalObject& global_object)
 
     auto& vm = this->vm();
 
-    // 5.2.1 Temporal.PlainDateTime.prototype, https://tc39.es/proposal-temporal/#sec-temporal-plaindatetime-prototype
+    // 5.2.1 Temporal.PlainDateTime.prototype, https://tc39.es/proposal-temporal/#sec-temporal.plaindatetime.prototype
     define_direct_property(vm.names.prototype, global_object.temporal_plain_date_time_prototype(), 0);
 
     u8 attr = Attribute::Writable | Attribute::Configurable;

+ 1 - 1
Userland/Libraries/LibJS/Runtime/Temporal/PlainMonthDayConstructor.cpp

@@ -25,7 +25,7 @@ void PlainMonthDayConstructor::initialize(GlobalObject& global_object)
 
     auto& vm = this->vm();
 
-    // 10.2.1 Temporal.PlainMonthDay.prototype, https://tc39.es/proposal-temporal/#sec-temporal-plainmonthday-prototype
+    // 10.2.1 Temporal.PlainMonthDay.prototype, https://tc39.es/proposal-temporal/#sec-temporal.plainmonthday.prototype
     define_direct_property(vm.names.prototype, global_object.temporal_plain_month_day_prototype(), 0);
 
     define_direct_property(vm.names.length, Value(2), Attribute::Configurable);

+ 1 - 1
Userland/Libraries/LibJS/Runtime/Temporal/PlainTimeConstructor.cpp

@@ -24,7 +24,7 @@ void PlainTimeConstructor::initialize(GlobalObject& global_object)
 
     auto& vm = this->vm();
 
-    // 4.2.1 Temporal.PlainTime.prototype, https://tc39.es/proposal-temporal/#sec-temporal-plaintime-prototype
+    // 4.2.1 Temporal.PlainTime.prototype, https://tc39.es/proposal-temporal/#sec-temporal.plaintime.prototype
     define_direct_property(vm.names.prototype, global_object.temporal_plain_time_prototype(), 0);
 
     u8 attr = Attribute::Writable | Attribute::Configurable;

+ 1 - 1
Userland/Libraries/LibJS/Runtime/Temporal/PlainYearMonthConstructor.cpp

@@ -26,7 +26,7 @@ void PlainYearMonthConstructor::initialize(GlobalObject& global_object)
 
     auto& vm = this->vm();
 
-    // 9.2.1 Temporal.PlainYearMonth.prototype, https://tc39.es/proposal-temporal/#sec-temporal-plainyearmonth-prototype
+    // 9.2.1 Temporal.PlainYearMonth.prototype, https://tc39.es/proposal-temporal/#sec-temporal.plainyearmonth.prototype
     define_direct_property(vm.names.prototype, global_object.temporal_plain_year_month_prototype(), 0);
 
     define_direct_property(vm.names.length, Value(2), Attribute::Configurable);

+ 1 - 1
Userland/Libraries/LibJS/Runtime/Temporal/TimeZoneConstructor.cpp

@@ -22,7 +22,7 @@ void TimeZoneConstructor::initialize(GlobalObject& global_object)
 
     auto& vm = this->vm();
 
-    // 11.3.1 Temporal.TimeZone.prototype, https://tc39.es/proposal-temporal/#sec-temporal-timezone-prototype
+    // 11.3.1 Temporal.TimeZone.prototype, https://tc39.es/proposal-temporal/#sec-temporal.timezone.prototype
     define_direct_property(vm.names.prototype, global_object.temporal_time_zone_prototype(), 0);
 
     u8 attr = Attribute::Writable | Attribute::Configurable;

+ 1 - 1
Userland/Libraries/LibJS/Runtime/Temporal/ZonedDateTimeConstructor.cpp

@@ -27,7 +27,7 @@ void ZonedDateTimeConstructor::initialize(GlobalObject& global_object)
 
     auto& vm = this->vm();
 
-    // 6.2.1 Temporal.ZonedDateTime.prototype, https://tc39.es/proposal-temporal/#sec-temporal-zoneddatetime-prototype
+    // 6.2.1 Temporal.ZonedDateTime.prototype, https://tc39.es/proposal-temporal/#sec-temporal.zoneddatetime.prototype
     define_direct_property(vm.names.prototype, global_object.temporal_zoned_date_time_prototype(), 0);
 
     u8 attr = Attribute::Writable | Attribute::Configurable;