summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Interpreter.cpp
AgeCommit message (Expand)Author
2021-06-24Userland: Replace VERIFY(is<T>) with verify_cast<T>Andreas Kling
2021-06-24LibJS: Rename CallFrame => ExecutionContextAndreas Kling
2021-06-22LibJS: Begin implementing GlobalEnvironmentRecordAndreas Kling
2021-06-22LibJS: Split the per-call-frame environment into lexical and variableAndreas Kling
2021-06-22LibJS: Bring function environment records closer to the specAndreas Kling
2021-06-21LibJS: Rename VM::current_scope() => current_environment_record()Andreas Kling
2021-06-21LibJS: Rename virtuals in EnvironmentRecordAndreas Kling
2021-06-21LibJS: Rename EnvironmentRecord::parent() => outer_environment()Andreas Kling
2021-06-21LibJS: Rename Environment Records so they match the spec :^)Andreas Kling
2021-06-19LibJS: Restructure and fully implement BindingPatternsMatthew Olsson
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