summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Interpreter.cpp
AgeCommit message (Expand)Author
2022-05-03LibJS: Remove implicit wrapping/unwrapping of completion recordsLinus Groh
2022-05-01LibJS: Rename some variables from "script body" to "script"Linus Groh
2022-04-11LibJS: Move additional notes to spec comments onto their own lineLinus Groh
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-03-18LibJS: Use TRY(push_execution_context()) in places where we can recoverLinus Groh
2022-03-16Libraries: Use default constructors/destructors in LibJSLenny Maiorani
2022-02-08LibJS+Everywhere: Remove VM::exception() and most related functionsdavidot
2022-02-07LibJS: Make ScriptOrModule use WeakPtr instead of raw pointersAndreas Kling
2022-01-22LibJS: Implement HostResolveImportedModule for LibJSdavidot
2022-01-22LibJS: Add ScriptOrModule to execution context and track it everywheredavidot
2022-01-22LibJS: Refactor interpreter to use Script and Source Text ModulesLuke Wilde
2022-01-08LibJS: Remove now unused VM::{set_,}last_value()Linus Groh
2022-01-08LibJS: Convert Interpreter::run() to ThrowCompletionOr<Value>Linus Groh
2022-01-06LibJS: Replace the custom unwind mechanism with completions :^)Linus Groh
2022-01-03LibJS: Update AST to use completions :^)Linus Groh
2021-11-14LibJS: Convert push_execution_context() to ThrowCompletionOrLinus Groh
2021-10-09LibJS: Pop execution context after running queued jobs in run()Linus Groh
2021-10-03LibJS: Fix that the interpreter did not clear the unwind statusdavidot
2021-09-30LibJS: Make scoping follow the specdavidot
2021-09-30LibJS: Allow multiple labels on the same statementdavidot
2021-09-28LibJS: Avoid unnecessary HashMap growth in Interpreter::enter_scope()Andreas Kling
2021-09-26LibJS: Allow statements to have multiple labelsAndreas Kling
2021-09-25LibJS: Rename OrdinaryFunctionObject to ECMAScriptFunctionObjectLinus Groh
2021-09-12LibJS: Change Interpreter::create_with_existing_{global_object => realm}Linus Groh
2021-09-12LibJS: Set the callee context's realm in prepare_for_ordinary_call()Linus Groh
2021-09-12LibJS: Move the GlobalEnvironment from GlobalObject to RealmLinus Groh
2021-09-12LibJS: Allocate a Realm next to GlobalObject in Interpreter::create()Linus Groh
2021-08-10LibJS: Change ExecutionContext's arguments list to a MarkedValueListTimothy Flynn
2021-08-01LibJS: Remove unused header includesBrian Gianforcaro
2021-07-06LibJS: Remove the non-standard put helper and replace it's usagesIdan Horowitz
2021-07-06LibJS: Improve function hoisting across blocksHendi
2021-07-01LibJS: Drop "Record" suffix from all the *Environment record classesAndreas Kling
2021-06-27LibJS: Rename ScriptFunction => OrdinaryFunctionObjectAndreas Kling
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