summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/ScriptFunction.cpp
AgeCommit message (Expand)Author
2021-06-25LibJS: Rename ScriptFunction::m_parent_scope => m_environmentAndreas Kling
2021-06-25LibJS: Add the Function.[[ThisMode]] fieldAndreas Kling
2021-06-25LibJS: FunctionEnvironment.[[FunctionObject]] is the *invoked* functionAndreas Kling
2021-06-24LibJS: Rename CallFrame => ExecutionContextAndreas Kling
2021-06-24LibJS: Don't use m_ prefix for argument name in ScriptFunctionAndreas 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-22LibJS: Remove home object from DeclarativeEnvironmentRecordAndreas Kling
2021-06-21LibJS: Rename VM::current_scope() => current_environment_record()Andreas Kling
2021-06-21LibJS: Rename Environment Records so they match the spec :^)Andreas Kling
2021-06-20LibJS: Consistently make prototype the last argument in Object ctorsLinus Groh
2021-06-19LibJS: Restructure and fully implement BindingPatternsMatthew Olsson
2021-06-19LibJS: Add the remaining generator objectsMatthew Olsson
2021-06-15LibJS: Add a basic pass manager and add some basic passesAli Mohammad Pur
2021-06-14LibJS: Write computed function default arguments into the call frameAndreas Kling
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-09LibJS: Store strings in a string tableGunnar Beutner
2021-06-09LibJS: Rename Bytecode::ExecutionUnit => Bytecode::ExecutableAndreas Kling
2021-06-09LibJS: Generate bytecode in basic blocks instead of one big blockAli Mohammad Pur
2021-06-07LibJS: Cache generated bytecode for ScriptFunctionAndreas Kling
2021-06-07LibJS: Move bytecode debug spam behind JS_BYTECODE_DEBUG :^)Andreas Kling
2021-06-07LibJS: Compile ScriptFunctions into bytecode and run them that way :^)Andreas Kling
2021-05-29LibJS: Implement destructuring assignments and function parametersAli Mohammad Pur
2021-05-29Everywhere: Use s.unverwerth@serenityos.org :^)Stephan Unverwerth
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-02-26LibJS: Respect declaration kind for variables inside functionsspeles
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling