mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 10:47:35 +00:00
LibJS: Make implementation-defined language more concise
This is a normative change in the Temporal spec. No behavioral change,
just a clarification.
See: 42c964e
This commit is contained in:
parent
86a7c795f6
commit
f046a4a75d
1 changed files with 2 additions and 2 deletions
|
@ -685,7 +685,7 @@ JS_DEFINE_NATIVE_FUNCTION(CalendarPrototype::era)
|
|||
return js_undefined();
|
||||
}
|
||||
|
||||
// 5. Let era be the result of implementation-defined processing of temporalDateLike and the value of calendar.[[Identifier]].
|
||||
// 5. Let era be the result of implementation-defined processing of temporalDateLike and calendar.[[Identifier]].
|
||||
// 6. Return era.
|
||||
|
||||
// NOTE: No support for non-iso8601 calendars yet.
|
||||
|
@ -717,7 +717,7 @@ JS_DEFINE_NATIVE_FUNCTION(CalendarPrototype::era_year)
|
|||
return js_undefined();
|
||||
}
|
||||
|
||||
// 5. Let eraYear be the result of implementation-defined processing of temporalDateLike and the value of calendar.[[Identifier]].
|
||||
// 5. Let eraYear be the result of implementation-defined processing of temporalDateLike and calendar.[[Identifier]].
|
||||
// 6. Return 𝔽(eraYear).
|
||||
|
||||
// NOTE: No support for non-iso8601 calendars yet.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue