summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/Object.cpp
AgeCommit message (Expand)Author
2021-12-21LibJS: Update spec numbers for Operations on Objects AOsTimothy Flynn
2021-12-08LibJS: Only allocate space for Object private elements if neededAndreas Kling
2021-11-24LibJS: Fix incorrectly formatted section commentsLinus Groh
2021-11-09LibJS: Remove leftover exception check in OrdinaryHasPropertyIdan Horowitz
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-21LibJS: Use implicit ThrowCompletionOr<T> constructor where possibleLinus Groh
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-13LibJS: Convert to_object() to ThrowCompletionOrLinus Groh
2021-10-05LibJS: Only do a single property lookup in internal_get_own_property()Andreas Kling
2021-10-04LibJS: Convert to_property_descriptor() to ThrowCompletionOrLinus Groh
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: Remove unused TemporaryChange include from Object.cppLinus 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+LibWeb: Use Object::set_prototype() in more placesLinus 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
2021-09-29LibJS: Convert internal_own_property_keys() to ThrowCompletionOrLinus Groh
2021-09-29LibJS: Convert internal_delete() to ThrowCompletionOrLinus Groh
2021-09-29LibJS: Convert internal_set() to ThrowCompletionOrLinus Groh
2021-09-29LibJS: Convert internal_get() to ThrowCompletionOrLinus Groh
2021-09-29LibJS: Convert internal_has_property() to ThrowCompletionOrLinus Groh
2021-09-29LibJS: Convert internal_define_own_property() to ThrowCompletionOrLinus Groh
2021-09-29LibJS: Convert internal_get_own_property() to ThrowCompletionOrLinus Groh
2021-09-29LibJS: Convert internal_prevent_extensions() to ThrowCompletionOrLinus Groh
2021-09-29LibJS: Convert internal_is_extensible() to ThrowCompletionOrLinus Groh
2021-09-29LibJS: Convert internal_set_prototype_of() to ThrowCompletionOrLinus Groh
2021-09-29LibJS: Convert internal_get_prototype_of() to ThrowCompletionOrLinus Groh
2021-09-26LibJS: Make Object::ordinary_set_with_own_descriptor non-staticLuke Wilde
2021-09-23LibJS: Convert Value::invoke and VM::call to ThrowCompletionOrIdan Horowitz