LibJS: Correct section IDs of Temporal .prototype property clauses

This is an editorial change in the Temporal spec.

See: e4eb181
This commit is contained in:
Linus Groh 2022-05-24 18:27:09 +01:00
commit c3f1d8f5ba
Notes: sideshowbarker 2024-07-17 23:02:37 +09:00
10 changed files with 11 additions and 11 deletions

View file

@ -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;