summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS
AgeCommit message (Expand)Author
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: Add ECMAScriptFunctionObject forward declarationLinus 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,Typed => Loosely,Strictly}{Equals,Inequals}Linus 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-21Libraries: Use AK::Variant default initialization where appropriateBen Wiederhake
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
2021-09-18LibJS: Always inline two hot (and trivial) functions in JS::LexerAndreas Kling
2021-09-18LibJS: Add fast failure path to try_parse_labelled_statement()Andreas Kling
2021-09-18LibJS: Make Lexer::s_keywords store keywords as FlyStringAndreas Kling
2021-09-18LibJS: Avoid a temporary AK::String when lexing already-seen identifiersAndreas Kling
2021-09-18AK: Make Utf8View constructors inline and remove C string constructorAndreas Kling
2021-09-18LibJS: Update step order in the InterpretTemporalDateTimeFields AOLinus Groh
2021-09-17LibJS: Convert Now AOs to ThrowCompletionOrLinus Groh
2021-09-17LibJS: Convert PlainDateTime AOs to ThrowCompletionOrLinus Groh
2021-09-17LibJS: Convert PlainDate AOs to ThrowCompletionOrLinus Groh
2021-09-17LibJS: Increase time between garbage collectionsAndreas Kling