1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:07:36 +00:00

LibJS: Remove now unnecessary FIXME comments about LocalTime's [[InDST]]

This commit is contained in:
Timothy Flynn 2022-01-19 14:56:18 -05:00 committed by Linus Groh
parent 4400150cd2
commit 6d3a3f279a
2 changed files with 1 additions and 5 deletions

View file

@ -161,6 +161,7 @@ enum class OptionDefaults {
};
// Table 5: Record returned by ToLocalTime, https://tc39.es/ecma402/#table-datetimeformat-tolocaltime-record
// Note: [[InDST]] is not included here - it is handled by LibUnicode / LibTimeZone.
struct LocalTime {
AK::Time time_since_epoch() const
{
@ -178,7 +179,6 @@ struct LocalTime {
u8 minute { 0 }; // [[Minute]]
u8 second { 0 }; // [[Second]]
u16 millisecond { 0 }; // [[Millisecond]]
bool in_dst { false }; // [[InDST]]
};
struct PatternPartitionWithSource : public PatternPartition {