summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/AST.cpp
AgeCommit message (Expand)Author
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: Allow statements to have multiple labelsAndreas Kling
2021-09-26LibJS: Defer execution of switch default clause until after case clausesLinus Groh
2021-09-25LibJS: Move has_constructor() from NativeFunction to FunctionObjectLinus Groh
2021-09-25LibJS: Move [[HomeObject]] to ECMAScriptFunctionObjectLinus Groh
2021-09-25LibJS: Move [[ConstructorKind]] to ECMAScriptFunctionObjectLinus 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_eq() to is_loosely_equal()Linus Groh
2021-09-24LibJS: Rename strict_eq() to is_strictly_equal()Linus Groh
2021-09-23LibJS: Convert Value::invoke and VM::call to ThrowCompletionOrIdan Horowitz
2021-09-21LibJS: Convert perform_eval to ThrowCompletionOrIdan Horowitz
2021-09-21LibJS: Convert make_super_property_reference to ThrowCompletionOrIdan Horowitz
2021-09-15LibJS: Use ThrowCompletionOr in require_object_coercible()Linus Groh
2021-09-14LibJS: Implement parsing and execution of optional chainsAli Mohammad Pur
2021-09-14LibJS: Reorder the global eval function call detection conditions a bitAli Mohammad Pur
2021-09-13LibJS: Evaluate function arguments before checking callee typeLinus Groh
2021-09-11LibJS: Use move semantics more when creating Reference objectsAndreas Kling
2021-09-08LibJS: Restore the environment if an exception is thrown in 'with' blockdavidot
2021-09-06Everywhere: Make ByteBuffer::{create_*,copy}() OOM-safeAli Mohammad Pur
2021-09-01LibJS: Add support for public fields in classesdavidot
2021-08-15LibJS: Parse and partially execute import and export statementsdavidot
2021-07-30LibJS: Parse RegExp literals at AST creation time, not execution timeTimothy Flynn
2021-07-20LibJS: Follow the spec more closely when determining the this valueTimothy Flynn
2021-07-20LibJS: Fix that vm.in_strict_mode was propagated to eval and functionsdavidot
2021-07-11LibJS: Add support for binding patterns in catch clausesAli Mohammad Pur
2021-07-11LibJS: Implement parsing and evaluation for AssignmentPatternsAli Mohammad Pur
2021-07-07LibJS: Make FunctionExpression more spec-compliantHendi
2021-07-07LibJS: Stop using a native property for RegExp's lastIndex propertyIdan Horowitz
2021-07-06LibJS: Don't hoist functions under certain circumstancesHendi
2021-07-06LibJS: Remove Object::is_array() in favor of Value::is_array() and RTTILinus Groh
2021-07-06LibJS: Add define_direct_property and remove the define_property helperIdan Horowitz
2021-07-06Revert "LibJS: Don't hoist functions under certain circumstances"Linus Groh
2021-07-06LibJS: Don't hoist functions under certain circumstancesHendi
2021-07-06LibJS: Improve function hoisting across blocksHendi
2021-07-06LibJS: Remove variables from FunctionNodeHendi
2021-07-05LibJS: Remove unnecessary value_or() from get()Linus Groh
2021-07-04LibJS: Rewrite most of Object for spec compliance :^)Linus Groh
2021-07-04LibJS: Make the `with` statement evaluation follow the spec even moreAndreas Kling
2021-07-04LibJS: Bring ArrayCreate and ArrayConstructor closer to specIdan Horowitz
2021-07-03LibJS: Don't allow `delete super.property`Andreas Kling
2021-07-03LibJS: Bring the `super` keyword in line with the specAndreas Kling
2021-07-02LibJS: Improve ResolveBinding + add GetIdentifierReferenceAndreas Kling
2021-07-02LibJS: Make SuperCall a proper AST node and clean up evaluationAndreas Kling
2021-07-02LibJS: NewExpression doesn't need compute_this_and_callee()Andreas Kling
2021-07-02LibJS: Split out NewExpression evaluation from CallExpressionAndreas Kling
2021-07-02LibJS: Break out ArgumentListEvaluation AO from CallExpressionAndreas Kling
2021-07-01LibJS: Drop "Record" suffix from all the *Environment record classesAndreas Kling
2021-06-29LibCrypto: Replace from_base{2,8,10,16}() & to_base10 with from_base(N)Idan Horowitz