summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/GlobalObject.cpp
AgeCommit message (Expand)Author
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
2021-06-03Everywhere: Replace ctype.h to avoid narrowing conversionsMax Wipfli
2021-06-01Everywhere: codepoint => code pointAndreas Kling
2021-04-25LibJS: Fallback to undefined if last value in eval() is emptyLinus 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-04-14LibJS: Implement the encode/decodeURI(Component) family of functionsIdan Horowitz
2021-04-02LibJS: Add initial support for PromisesLinus Groh
2021-03-17LibJS: eval(x) should return x without evaluation if x is not a stringAndreas Kling
2021-03-17LibJS: Rename GlobalObject::initialize() => initialize_global_object()Andreas Kling
2021-03-15LibJS: Throw SyntaxError in eval() when parser has error(s)Linus Groh
2021-03-15LibJS: Make eval() return the last value from the executed statementAndreas Kling
2021-03-15LibJS: Add naive implementation of eval() :^)Andreas Kling
2021-02-05LibJS: GlobalObject must mark builtin prototypesAndreas Kling
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling