summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/AST.cpp
AgeCommit message (Expand)Author
2021-06-14LibJS: Teach Reference to access call frame arguments directlyAndreas Kling
2021-06-14LibJS: Access function arguments directly in AST interpreterAndreas Kling
2021-06-14LibJS: Track which Identifier nodes refer to function argumentsAndreas Kling
2021-06-14LibJS: Add support for hex, octal & binary big integer literalsIdan Horowitz
2021-06-12AK: Rename Vector::append(Vector) => Vector::extend(Vector)Andreas Kling
2021-06-11LibJS: Use an enum class instead of 'bool is_generator'Ali Mohammad Pur
2021-06-11LibJS: Move is_arrow_function() from FunctionExpression to FunctionNodeAndreas Kling
2021-06-11LibJS: Fix two accidentally incorrect ScriptFunction constructionsLinus Groh
2021-06-11LibJS: Switch AST.{h,cpp} to east constAli Mohammad Pur
2021-06-11LibJS: Implement generator functions (only in bytecode mode)Ali Mohammad Pur
2021-06-10LibJS: Remove GlobalObject& argument from VM::construct()Andreas Kling
2021-06-08LibJS: Handle Proxy with Array target in IsArray() abstract operationLinus Groh
2021-06-08LibJS: Make SwitchStatement::execute() return undefined for empty blocksMarcin Gasperowicz
2021-06-08LibJS: Support deleting local variables with operator deleteIdan Horowitz
2021-06-08LibJS: Return undefined from a with statement if no value was generatedIdan Horowitz
2021-06-08LibJS: Return the last value from a with statementIdan Horowitz
2021-06-07LibJS: Move AST bytecode generation virtuals to separate cpp fileAndreas Kling
2021-06-07LibJS: Add Sub bytecode instruction (subtract values)Andreas Kling
2021-06-07LibJS: Some more opcodes for the bytecode VMAndreas Kling
2021-06-07LibJS: Start fleshing out a bytecode for the JavaScript engine :^)Andreas Kling
2021-06-05LibJS: Replace StringOrSymbol::from_value with Value::to_property_keyIdan Horowitz
2021-06-04LibJS: Fix functions binding this to global object in strict modeRyan Chandler
2021-06-03Everywhere: Remove accidental '\n' from various outln() invocationsAndreas Kling
2021-05-29LibJS: Implement destructuring assignments and function parametersAli Mohammad Pur
2021-05-11LibJS: Make super() in catch block workLinus Groh
2021-05-10LibJS: Rename RegExpLiteral m_content to m_patternLinus Groh
2021-04-25LibJS: Don't suppress GlobalObject variable lookup exceptionsFalseHonesty
2021-04-24LibJS: Remove stray '%' from MemberExpression AST dumpAndreas Kling
2021-04-22Everywhere: Use linusg@serenityos.org for my copyright headersLinus Groh
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-04-15LibJS: Use references in CallExpression::compute_this_and_callee()Linus Groh
2021-04-14LibJS: Use reference in MemberExpression::execute()Linus Groh
2021-04-13LibJS: Add set_exception() and change throw_exception() to take a referenceLinus Groh
2021-04-13LibJS: Update empty TryStatement result value to undefinedLinus Groh
2021-04-13LibJS: Fix return value of TryStatement with finalizerLinus Groh
2021-04-10LibJS: Implicitly break for..in loop if the RHS result is nullishLinus Groh
2021-04-10LibJS: Update Object::define_accessor() to take both getter and setterLinus Groh
2021-04-10LibJS: Let Object::delete_property() return a bool, not ValueLinus Groh
2021-04-07LibJS: Use MarkedValueList for internal own properties getter functionsLinus Groh
2021-04-05LibJS: Add Object::get_enumerable_own_property_names() and use itLinus Groh
2021-04-05LibJS: Remove this_object parameter from get/put own property functionsLinus Groh
2021-04-03LibJS: Fix returning from try statementLinus Groh
2021-04-02LibJS: Move 'typeof' string functionality from AST to ValueLinus Groh
2021-03-22Only apply auto-naming of function expressions based on syntaxAndreas Kling
2021-03-21LibJS: Split Value::Type::Number into Int32 and DoubleAndreas Kling
2021-03-21LibJS: Don't track executing AST nodes in a VectorAndreas Kling
2021-03-21LibJS: Only update anonymous function names when necessaryAndreas Kling
2021-03-21LibJS: Move AST node stack from VM to InterpreterAndreas Kling
2021-03-16LibJS: Make an RAII helper for entering/exiting AST nodesAndreas Kling
2021-03-16LibJS: Implement non-value-producing statements properlyLinus Groh