summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/Object.h
AgeCommit message (Expand)Author
2022-08-29LibJS: Hide all the constructors!Andreas Kling
2022-08-29LibJS: Make JS_OBJECT and JS_ENVIRONMENT forward to JS_CELLAndreas Kling
2022-08-29LibJS: Add JS_CELL macro and use it in all JS::Cell subclassesAndreas Kling
2022-08-28LibJS: Remove Shape::global_object() and Object::global_object()Linus Groh
2022-08-23LibJS: Pass Realm to define_native_{accessor,function}()Linus Groh
2022-08-23LibJS: Remove GlobalObject parameter from native functionsLinus Groh
2022-08-23LibJS: Replace GlobalObject with VM in Value AOs [Part 4/19]Linus Groh
2022-08-23LibJS+LibWeb: Replace GlobalObject with Realm in create() functionsLinus Groh
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-08-05LibJS: Let Shape store a Realm instead of a GlobalObjectAndreas Kling
2022-07-12Everywhere: Add sv suffix to strings relying on StringView(char const*)sin-ack
2022-05-03LibJS: Remove implicit wrapping/unwrapping of completion recordsLinus Groh
2022-04-20LibJS: De-duplicate ClassFieldDefinition RecordsLinus Groh
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-03-29LibJS: Implement the EnumerateObjectProperties AOIdan Horowitz
2022-03-19DevTools+LibJS+LibWeb: Change class_name to use StringViewLenny Maiorani
2022-03-16Libraries: Use default constructors/destructors in LibJSLenny Maiorani
2022-02-09LibJS: Add Object constructor allowing null prototypeLinus Groh
2022-02-09LibJS: Replace uses of MarkedValueList with MarkedVector<Value>Linus Groh
2022-02-06Everywhere: Rename JS::PropertyKey variables from property_{name => key}Linus Groh
2021-12-10LibJS: Remove Object::value_of()Linus Groh
2021-12-08LibJS: Only allocate space for Object private elements if neededAndreas Kling
2021-10-31LibJS: Remove old Native FunctionsIdan Horowitz
2021-10-24LibJS: Provide default hash traits for JS::PropertyKeyAndreas Kling
2021-10-24LibJS: Rename PropertyName to PropertyKeyAndreas Kling
2021-10-20LibJS: Add slot [[PrivateElements]] and related methods to Objectdavidot
2021-10-20LibJS: Rename define_native_function => define_old_native_functionIdan Horowitz
2021-10-20LibJS: Convert NativeFunction callback to ThrowCompletionOrIdan Horowitz
2021-10-04LibJS: Convert ordinary_set_with_own_descriptor() to ThrowCompletionOrLinus Groh
2021-10-04LibJS: Convert define_properties() to ThrowCompletionOrLinus Groh
2021-10-04LibJS: Convert set_immutable_prototype() to ThrowCompletionOrLinus Groh
2021-10-03LibJS: Convert enumerable_own_property_names() to ThrowCompletionOrLinus Groh
2021-10-03LibJS: Convert test_integrity_level() to ThrowCompletionOrLinus Groh
2021-10-03LibJS: Convert set_integrity_level() to ThrowCompletionOrLinus Groh
2021-10-03LibJS: Convert has_own_property() to ThrowCompletionOrLinus Groh
2021-10-03LibJS: Convert has_property() to ThrowCompletionOrLinus Groh
2021-10-03LibJS: Convert delete_property_or_throw() to ThrowCompletionOrLinus Groh
2021-10-03LibJS: Convert define_property_or_throw() to ThrowCompletionOrLinus Groh
2021-10-03LibJS: Convert create_non_enum_data_p_or_throw() to ThrowCompletionOrLinus Groh
2021-10-03LibJS: Convert create_data_property_or_throw() to ThrowCompletionOrLinus Groh
2021-10-03LibJS: Convert create_method_property() to ThrowCompletionOrLinus Groh
2021-10-03LibJS: Convert create_data_property() to ThrowCompletionOrLinus Groh
2021-10-03LibJS: Convert Object::set() to ThrowCompletionOrLinus Groh
2021-10-03LibJS: Convert Object::get() to ThrowCompletionOrLinus Groh
2021-10-03LibJS: Convert is_extensible() to ThrowCompletionOrLinus Groh
2021-10-03LibJS: Convert ordinary_to_primitive() to ThrowCompletionOrLinus Groh
2021-10-02LibJS: Add Object::set_prototype()Linus Groh
2021-10-01LibJS: Remove transition avoidance & start caching prototype transitionsAndreas Kling
2021-09-30LibJS: Make scoping follow the specdavidot