summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Tests
AgeCommit message (Expand)Author
2021-06-12LibJS: Implement Object.assign()Linus Groh
2021-06-12LibJS: Add all of the WeakMap.prototype methods (delete, get, has, set)Idan Horowitz
2021-06-11LibJS: Implement the Error Cause proposalLinus Groh
2021-06-11LibJS: Improve Error/NativeError testsLinus Groh
2021-06-11LibJS: Implement AggregateErrorLinus Groh
2021-06-10LibJS: Pass in actual_delete_count to removed array creation in spliceLuke
2021-06-09LibJS: Use create_list_from_array_like() in Reflect.{apply,construct}()Linus Groh
2021-06-09LibJS: Only "var" declarations go in the global object at program levelAndreas Kling
2021-06-09LibJS: Notify WeakSets when heap cells are sweepedIdan Horowitz
2021-06-09LibJS: Add all of the WeakSet.prototype methods (add, delete, has)Idan Horowitz
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 most of the Set.prototype methodsIdan Horowitz
2021-06-09LibJS: Add the Set built-in objectIdan Horowitz
2021-06-08LibJS: Handle Proxy with Array target in IsArray() abstract operationLinus Groh
2021-06-08LibJS: Implement Proxy.revocable()Linus Groh
2021-06-08LibJS: Remove Proxy() argument count checkLinus Groh
2021-06-08LibJS: Add @@toStringTag to ReflectLinus Groh
2021-06-08LibJS: Add @@toStringTag to Promise.prototypeLinus Groh
2021-06-08LibJS: Support deleting local variables with operator deleteIdan Horowitz
2021-06-07LibJS: Add missing cyclic prototype check to Object.setPrototypeOf()Linus Groh
2021-06-06LibJS: Add Date.prototype.setTime()Idan Horowitz
2021-06-06LibJS: Add Date.prototype.setMonth()Idan Horowitz
2021-06-06LibJS: Account for differences in month representations (0-11 vs 1-12)Idan Horowitz
2021-06-06LibJS: Add Date.prototype.setDate()Idan Horowitz
2021-06-06LibJS: Implement String.prototype[@@toPrimitive]()Linus Groh
2021-06-06LibJS: Remove String.prototype.lengthLinus Groh
2021-06-06LibJS: Update NumberPrototype's this_number_value() to take a ValueLinus Groh
2021-06-06LibJS: Replace some is_nullish() checks with require_object_coercible()Linus Groh
2021-06-06LibJS: Implement Number.prototype.valueOf()Linus Groh
2021-06-06LibJS: Uncomment and add parseInt testsIdan Horowitz
2021-06-05LibJS: Throw TypeError on write to non-writable property in strict modeIdan Horowitz
2021-06-05LibJS: Add the global escape() & unescape() methodsIdan Horowitz
2021-06-04LibJS: Fix functions binding this to global object in strict modeRyan Chandler
2021-06-04LibJS/Tests: Catch exceptions in describe() itselfAli Mohammad Pur
2021-05-31LibJS: Add left shift & right shift operator support for BigIntegersIdan Horowitz
2021-05-29LibJS: Add tests for destructuring assignments and function parametersAli Mohammad Pur
2021-05-21LibJS: Expose TypedArray.prototype.byteOffsetLuke
2021-05-21LibJS: Expose TypedArray.prototype.byteLengthLuke
2021-05-21LibJS: Expose TypedArray.prototype.bufferLuke
2021-05-21LibJS: Expose BYTES_PER_ELEMENT on each TypedArrayLuke
2021-05-18LibJS: Implement Object.hasOwn() :^)Andreas Kling
2021-05-13LibJS: Ensure function declarations don't leak outside function scopesLinus Groh
2021-05-13LibJS/Tests: Add details for toBeTrue() / toBeFalse() expectation errorLinus Groh
2021-05-13LibJS/Tests: Add details for toThrowWithMessage did-not-throw caseLinus Groh
2021-05-13LibJS/Tests: Add prefix to toThrowWithMessage expectation error detailsLinus Groh
2021-05-11LibJS: Make super() in catch block workLinus Groh
2021-05-11LibJS: Bring back runtime validation of RegExp flagsLinus Groh
2021-05-11LibJS/Tests: Add details for toThrowWithMessage() expectation errorLinus Groh
2021-05-11LibJS: Use u64 instead of u32 in NumberPrototype::to_stringLuke