summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Interpreter.cpp
AgeCommit message (Expand)Author
2021-06-15LibJS: Add the FinalizationRegistry built-in objectIdan Horowitz
2021-06-12LibJS: Store and maintain an "execution generation" counterIdan Horowitz
2021-06-11LibJS: Use an enum class instead of 'bool is_generator'Ali Mohammad Pur
2021-06-11LibJS: Implement generator functions (only in bytecode mode)Ali Mohammad Pur
2021-06-10LibJS: Let the bytecode interpreter set the VM's last valueGunnar Beutner
2021-06-09LibJS: Only "var" declarations go in the global object at program levelAndreas Kling
2021-06-08LibJS: Return undefined from a with statement if no value was generatedIdan Horowitz
2021-05-29LibJS: Implement destructuring assignments and function parametersAli Mohammad Pur
2021-05-13LibJS: Ensure function declarations don't leak outside function scopesLinus Groh
2021-04-24LibJS: Add VM::on_call_stack_emptied callbackLinus Groh
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-04-13LibJS: Replace two more uses of unwind(ScopeType::None) with stop_unwind()Linus Groh
2021-04-02LibJS: Add initial support for PromisesLinus Groh
2021-03-21LibJS: Don't track executing AST nodes in a VectorAndreas Kling
2021-03-21LibJS: Move AST node stack from VM to InterpreterAndreas Kling
2021-03-16LibJS: Implement non-value-producing statements properlyLinus Groh
2021-03-16LibJS: Make Interpreter::run() a void functionLinus Groh
2021-03-01LibJS: Keep track of current AST node inside the call stackJean-Baptiste Boric
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-02-10LibJS: Remove a whole bunch of unnecessary #includesAndreas Kling
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling