summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/ObjectConstructor.cpp
AgeCommit message (Expand)Author
2021-07-16LibJS: Replace the boolean argument of Object::set with an enum classIdan Horowitz
2021-07-08LibJS: Reorder and add missing name & length properties to Built-insIdan Horowitz
2021-07-06LibJS: Implement Object.getOwnPropertyDescriptors()Idan Horowitz
2021-07-06LibJS: Rename ObjectConstructor::{define_property_ => define_property}Idan Horowitz
2021-07-06LibJS: Add define_direct_property and remove the define_property helperIdan Horowitz
2021-07-05LibJS: Add a missing exception check in Object.assign()Linus Groh
2021-07-05LibJS: Add spec step comments to Object.assign()Linus Groh
2021-07-05LibJS: Add spec step comments to Object.hasOwn()Linus Groh
2021-07-05LibJS: Remove unnecessary value_or() from get()Linus Groh
2021-07-04LibJS: Rewrite most of Object for spec compliance :^)Linus Groh
2021-06-28LibJS: Accept FlyStrings in the NativeFunction constructorsIdan Horowitz
2021-06-27LibJS: Rename Function => FunctionObjectAndreas Kling
2021-06-22LibJS: Return non-object argument unaltered from Object.setPrototypeOf()Linus Groh
2021-06-20LibJS: Use OrdinaryCreateFromConstructor() in a bunch of constructorsLinus Groh
2021-06-20LibJS: Introduce AbstractOperations.{cpp,h} and move various AOs thereLinus Groh
2021-06-16LibJS: Replace Object's create_empty() with create() taking a prototypeLinus Groh
2021-06-15LibJS: Add the Object.fromEntries methodIdan Horowitz
2021-06-13LibJS: Add ECMA-262 section/title/URL comments almost everywhereLinus Groh
2021-06-12LibJS: Add the Object.getOwnPropertySymbols methodIdan Horowitz
2021-06-12LibJS: Remove argument count checks in Object.* methodsIdan Horowitz
2021-06-12LibJS: Implement Object.assign()Linus Groh
2021-06-07LibJS: Use ToPropertyKey in Object.getOwnPropertyDescriptorIdan Horowitz
2021-06-05LibJS: Replace StringOrSymbol::from_value with Value::to_property_keyIdan Horowitz
2021-05-18LibJS: Implement Object.hasOwn() :^)Andreas Kling
2021-04-25LibJS: Use Object::get_own_properties() for getOwnPropertyNames()Linus 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-10LibJS: Implement Object.create()Linus Groh
2021-04-10LibJS: Implement Object.defineProperties()Linus Groh
2021-04-07LibJS: Implement Object.isFrozen() and Object.isSealed()Linus Groh
2021-04-07LibJS: Implement Object.freeze() and Object.seal()Linus Groh
2021-04-07LibJS: Use MarkedValueList for internal own properties getter functionsLinus Groh
2021-04-05LibJS: Add Object::get_enumerable_own_property_names() and use itLinus Groh
2021-04-05LibJS: Remove this_object parameter from get/put own property functionsLinus Groh
2021-02-10LibJS: Remove a whole bunch of unnecessary #includesAndreas Kling
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling