summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime
AgeCommit message (Expand)Author
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-29LibJS: Fix a typo in a comment in Object.hLinus Groh
2021-09-29LibJS: Drop the Temporal prefix from TemporalMissingRequiredPropertyIdan Horowitz
2021-09-28LibJS: Avoid unnecessary HashMap copy in FunctionEnvironmentAndreas Kling
2021-09-28LibJS: Avoid unnecessary HashMap copy in ECMAScriptFunctionObjectAndreas Kling
2021-09-28LibJS: Change create_iterator_result_object's return type to Object*Idan Horowitz
2021-09-26LibJS: Parse date strings like "Wed Apr 17 23:08:53 +0000 2019"Andreas Kling
2021-09-26LibJS: Make Object::ordinary_set_with_own_descriptor non-staticLuke Wilde
2021-09-26LibJS: Allow statements to have multiple labelsAndreas Kling
2021-09-25LibJS: Move has_constructor() from NativeFunction to FunctionObjectLinus Groh
2021-09-25LibJS: Add const Value::as_function()Linus Groh
2021-09-25LibJS: Remove unused FunctionObject::environment()Linus Groh
2021-09-25LibJS: Move [[BoundThis]] and [[BoundArguments]] to BoundFunctionLinus Groh
2021-09-25LibJS: Rename BoundFunction::m_target_function to match spec nameLinus Groh
2021-09-25LibJS: Move has_simple_parameter_list to ECMAScriptFunctionObjectLinus Groh
2021-09-25LibJS: Move [[Fields]] to ECMAScriptFunctionObjectLinus Groh
2021-09-25LibJS: Move [[HomeObject]] to ECMAScriptFunctionObjectLinus Groh
2021-09-25LibJS: Move [[ConstructorKind]] to ECMAScriptFunctionObjectLinus Groh
2021-09-25LibJS: Move [[ThisMode]] to ECMAScriptFunctionObjectLinus Groh
2021-09-25LibJS: Rename ECMAScriptFunctionObject members to match spec namesLinus Groh
2021-09-25LibJS: Rename OrdinaryFunctionObject to ECMAScriptFunctionObjectLinus Groh
2021-09-24LibJS: Rename abstract_relation() to is_less_than()Linus Groh
2021-09-24LibJS: Rename abstract_eq() to is_loosely_equal()Linus Groh
2021-09-24LibJS: Rename strict_eq() to is_strictly_equal()Linus Groh
2021-09-24LibJS: Close iterator on throw completion in Array.fromIdan Horowitz
2021-09-24LibJS: Add missing exception checks to {Array, TypedArray}.from()Idan Horowitz
2021-09-23LibJS: Convert get_method to ThrowCompletionOrIdan Horowitz
2021-09-23LibJS: Convert Value::invoke and VM::call to ThrowCompletionOrIdan Horowitz
2021-09-23LibJS: Convert is_regexp to ThrowCompletionOrIdan Horowitz
2021-09-23LibJS: Switch is_array to ThrowCompletionOrIdan Horowitz
2021-09-21LibJS: Convert perform_eval to ThrowCompletionOrIdan Horowitz
2021-09-21LibJS: Add VM::throw_completion helper for throwing custom StringsIdan Horowitz
2021-09-21LibJS: Convert get_substitution to ThrowCompletionOrIdan Horowitz
2021-09-21LibJS: Remove non-specification compliant exception checkIdan Horowitz
2021-09-21LibJS: Convert length_of_array_like to ThrowCompletionOrIdan Horowitz
2021-09-21LibJS: Convert make_super_property_reference to ThrowCompletionOrIdan Horowitz
2021-09-21LibJS: Update spec comment to convert mathematical to number valueLinus Groh
2021-09-18LibJS: Convert ListFormat AOs to ThrowCompletionOrIdan Horowitz
2021-09-18LibJS: Convert DisplayNames AOs to ThrowCompletionOrIdan Horowitz
2021-09-18LibJS: Convert NumberFormat AOs to ThrowCompletionOrIdan Horowitz
2021-09-18LibJS: Convert get_number_option() to ThrowCompletionOrIdan Horowitz
2021-09-18LibJS: Convert default_number_option() to ThrowCompletionOrIdan Horowitz
2021-09-18LibJS: Convert coerce_options_to_object() to ThrowCompletionOrIdan Horowitz
2021-09-18LibJS: Convert supported_locales() to ThrowCompletionOrIdan Horowitz
2021-09-18LibJS: Convert Intl::get_option() to ThrowCompletionOrIdan Horowitz
2021-09-18LibJS: Convert canonicalize_locale_list() to ThrowCompletionOrIdan Horowitz