summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/GlobalObject.cpp
AgeCommit message (Expand)Author
2021-08-08LibJS: Add preparation for Intl constructors and prototypesLinus Groh
2021-08-08LibJS: Add the Intl namespace object :^)Linus Groh
2021-08-08LibJS: Start implementing Temporal.PlainYearMonthLinus Groh
2021-08-01LibJS: Start implementing Temporal.ZonedDateTimeLinus Groh
2021-07-28LibJS: Start implementing Temporal.PlainTimeLinus Groh
2021-07-27LibJS: Implement Temporal.Now.plainDate()Linus Groh
2021-07-25LibJS: Store the %Array.prototype.values% intrinsic on the global objectLinus Groh
2021-07-22LibJS: Start implementing Temporal.PlainDateTimeLinus Groh
2021-07-19LibJS: Start implementing Temporal.PlainDateIdan Horowitz
2021-07-16LibJS: Implement the RegExpStringIterator objectTimothy Flynn
2021-07-16LibJS: Start implementing Temporal.DurationLinus Groh
2021-07-14LibJS: Start implementing Temporal.CalendarLinus Groh
2021-07-14LibJS: Begin implementing AtomicsTimothy Flynn
2021-07-07LibJS: Start implementing Temporal.InstantLinus Groh
2021-07-07LibJS: Start implementing Temporal.TimeZoneLinus Groh
2021-07-07LibJS: Add preparation for Temporal constructors and prototypesLinus Groh
2021-07-07LibJS: Add the Temporal namespace object :^)Linus Groh
2021-07-06LibJS: Remove unused Lexer/Parser includes from GlobalObject.cppLinus Groh
2021-07-06LibJS: Add define_direct_property and remove the define_property helperIdan Horowitz
2021-07-04LibJS: Rewrite most of Object for spec compliance :^)Linus Groh
2021-07-01LibJS: Drop "Record" suffix from all the *Environment record classesAndreas Kling
2021-06-28LibJS: Add and use the %ThrowTypeError% intrinsicIdan Horowitz
2021-06-27LibJS: Rename ScriptFunction => OrdinaryFunctionObjectAndreas Kling
2021-06-26LibJS: Make sure `this` in the global environment is the global objectAndreas Kling
2021-06-23LibJS: Correct behaviour of direct vs. indirect evalAnonymous
2021-06-22LibJS: Begin implementing GlobalEnvironmentRecordAndreas Kling
2021-06-22LibJS: Split the per-call-frame environment into lexical and variableAndreas Kling
2021-06-22LibJS: Bring function environment records closer to the specAndreas Kling
2021-06-21LibJS: Rename virtuals in EnvironmentRecordAndreas Kling
2021-06-21LibJS: Rename Environment Records so they match the spec :^)Andreas Kling
2021-06-19LibJS: Add the remaining generator objectsMatthew Olsson
2021-06-15LibJS: Add the FinalizationRegistry built-in objectIdan Horowitz
2021-06-14LibJS: Add the DataView built-in objectIdan Horowitz
2021-06-13LibJS: Add ECMA-262 section/title/URL comments almost everywhereLinus Groh
2021-06-13LibJS: Add the MapIterator built-in and the key/values/entries methodsIdan Horowitz
2021-06-13LibJS: Add the Map built-in objectIdan Horowitz
2021-06-12LibJS: Add the WeakRef built-in objectIdan Horowitz
2021-06-12LibJS: Add the WeakMap built-in objectIdan Horowitz
2021-06-12LibJS: Hide gc() dbgln() behind #ifdef __serenity__Linus Groh
2021-06-11LibJS: Implement AggregateErrorLinus Groh
2021-06-11LibJS: Rename JS_ENUMERATE_{ERROR_SUBCLASSES => NATIVE_ERRORS}Linus Groh
2021-06-09LibJS: Add the WeakSet built-in objectIdan Horowitz
2021-06-09LibJS: Add the SetIterator built-in and Set.prototype.{values, entries}Idan Horowitz
2021-06-09LibJS: Add the Set built-in objectIdan Horowitz
2021-06-08LibJS: Support deleting local variables with operator deleteIdan Horowitz
2021-06-08LibJS: Return undefined from a with statement if no value was generatedIdan Horowitz
2021-06-06LibJS: Trim initial whitespace in parseFloatIdan Horowitz
2021-06-06LibJS: Parse digits with parse_ascii_base36_digit in parseIntIdan Horowitz
2021-06-06LibJS: Set the length property of parseInt to 2Idan Horowitz
2021-06-05LibJS: Add the global escape() & unescape() methodsIdan Horowitz