summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/DateConstructor.cpp
AgeCommit message (Expand)Author
2022-08-23LibJS+LibWeb: Replace GlobalObject with Realm in initialize() functionsLinus Groh
2022-08-23LibJS+LibWeb: Replace GlobalObject with Realm in object constructorsLinus Groh
2022-07-12Everywhere: Add sv suffix to strings relying on StringView(char const*)sin-ack
2022-05-06LibJS: Convert remaining Date AOs using JS::Value as in/output to doubleLinus Groh
2022-04-30LibJS: Reject -00000 as extended year in Date parsingIdan Horowitz
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-03-16Libraries: Use default constructors/destructors in LibJSLenny Maiorani
2022-03-09LibJS: Be more lenient when parsing milliseconds for Datedavidot
2022-01-31Everywhere: Update copyrights with my new serenityos.org e-mail :^)Timothy Flynn
2022-01-15LibJS: Re-implement the Date constructor / prototype for spec complianceTimothy Flynn
2022-01-15LibJS: Do not negate offset in LocalTZA for isUTC=falseTimothy Flynn
2022-01-14LibJS: Clip parsed IS0 8601 strings to +/- 8.64e15Timothy Flynn
2022-01-14LibJS: Implement Date.parse using AK::Time and LibTimeZoneTimothy Flynn
2022-01-05LibJS: Implement Date.UTC according to the specTimothy Flynn
2022-01-05LibJS: Set the length of Date.UTC to 7Timothy Flynn
2021-10-23LibJS: Convert DateConstructor functions to ThrowCompletionOrIdan Horowitz
2021-10-21LibJS: Convert NativeFunction::{call,construct}() to ThrowCompletionOrLinus Groh
2021-10-20LibJS: Rename define_native_function => define_old_native_functionIdan Horowitz
2021-10-20LibJS: Add ThrowCompletionOr versions of the JS native function macrosIdan Horowitz
2021-10-18LibJS: Convert to_i32() to ThrowCompletionOrIdan Horowitz
2021-10-18LibJS: Convert to_number() to ThrowCompletionOrIdan Horowitz
2021-10-13LibJS: Convert to_string() to ThrowCompletionOrLinus Groh
2021-09-26LibJS: Parse date strings like "Wed Apr 17 23:08:53 +0000 2019"Andreas Kling
2021-09-16LibJS: Convert ordinary_create_from_constructor<T> to ThrowCompletionOrIdan Horowitz
2021-07-10LibJS: Make parse_simplified_iso8601() use Optional<int> instead of -1Linus Groh
2021-07-10LibJS: Make Date.now() return a floor()'d milliseconds valueLinus Groh
2021-07-08LibJS: Reorder and add missing name & length properties to Built-insIdan Horowitz
2021-07-06LibJS: Add define_direct_property and remove the define_property helperIdan Horowitz
2021-06-28LibJS: Accept FlyStrings in the NativeFunction constructorsIdan Horowitz
2021-06-27LibJS: Rename Function => FunctionObjectAndreas Kling
2021-06-20LibJS: Use OrdinaryCreateFromConstructor() in a bunch of constructorsLinus Groh
2021-06-13LibJS: Use the new is_ascii_foo() helpers from AKAndreas Kling
2021-06-13Userland: Allow building SerenityOS with -funsigned-charGunnar Beutner
2021-06-13LibJS: Don't repeat attributes in {Date,Symbol}ConstructorLinus Groh
2021-06-13LibJS: Add ECMA-262 section/title/URL comments almost everywhereLinus Groh
2021-06-06LibJS: Check dates are below the `time_clip` thresholdIdan Horowitz
2021-06-06LibJS: Store Date milliseconds as signed to support negative offsetsIdan Horowitz
2021-06-06LibJS: Ignore arguments in Date's constructor when called as a functionIdan Horowitz
2021-06-06LibJS: Create 1970-01-01 00:00:00 local time Date for invalid ctor callLinus Groh
2021-04-22Everywhere: Use linusg@serenityos.org for my copyright headersLinus Groh
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-03-22LibJS Date: Added "Invalid Date".Petróczi Zoltán
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-02-13LibJS: Return empty value on exception in Date.parse(), not NaNLinus Groh
2021-02-13LibJS: Add missing exception check in Date() constructorLinus Groh
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling