summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/AST.cpp
AgeCommit message (Expand)Author
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
2021-03-03LibJS: Fix a handful of clang-tidy complaints in AST.cppAndreas Kling
2021-03-01LibJS: Fix crash due to AST node tracking inside call stackJean-Baptiste Boric
2021-03-01LibJS: Keep track of current AST node inside the call stackJean-Baptiste Boric
2021-02-26LibJS: Set declared for-in and for-of variables as first time.speles
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-02-10LibJS: Include <typeinfo> in AST.cpp againAndreas Kling
2021-02-10LibJS: Remove a whole bunch of unnecessary #includesAndreas Kling
2021-01-28LibJS: Fix crash when printing error for missing class extends value prototypeLinus Groh
2021-01-24LibJS: Remove redundant exception check from ClassExpression::execute()Linus Groh
2021-01-24LibJS: Check if class extends value has a valid prototypeLinus Groh
2021-01-20LibJS: Include <typeinfo> in AST.cppNico Weber
2021-01-17LibJS: Replace ASTNode::class_name() with RTTIAndreas Kling
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling