index
:
serenity
master
topic/trivial_docs
The Serenity Operating System 🐞
cos
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Userland
/
Libraries
/
LibJS
/
Interpreter.cpp
Age
Commit message (
Expand
)
Author
2021-06-24
Userland: Replace VERIFY(is<T>) with verify_cast<T>
Andreas Kling
2021-06-24
LibJS: Rename CallFrame => ExecutionContext
Andreas Kling
2021-06-22
LibJS: Begin implementing GlobalEnvironmentRecord
Andreas Kling
2021-06-22
LibJS: Split the per-call-frame environment into lexical and variable
Andreas Kling
2021-06-22
LibJS: Bring function environment records closer to the spec
Andreas Kling
2021-06-21
LibJS: Rename VM::current_scope() => current_environment_record()
Andreas Kling
2021-06-21
LibJS: Rename virtuals in EnvironmentRecord
Andreas Kling
2021-06-21
LibJS: Rename EnvironmentRecord::parent() => outer_environment()
Andreas Kling
2021-06-21
LibJS: Rename Environment Records so they match the spec :^)
Andreas Kling
2021-06-19
LibJS: Restructure and fully implement BindingPatterns
Matthew Olsson
2021-06-15
LibJS: Add the FinalizationRegistry built-in object
Idan Horowitz
2021-06-12
LibJS: Store and maintain an "execution generation" counter
Idan Horowitz
2021-06-11
LibJS: Use an enum class instead of 'bool is_generator'
Ali Mohammad Pur
2021-06-11
LibJS: Implement generator functions (only in bytecode mode)
Ali Mohammad Pur
2021-06-10
LibJS: Let the bytecode interpreter set the VM's last value
Gunnar Beutner
2021-06-09
LibJS: Only "var" declarations go in the global object at program level
Andreas Kling
2021-06-08
LibJS: Return undefined from a with statement if no value was generated
Idan Horowitz
2021-05-29
LibJS: Implement destructuring assignments and function parameters
Ali Mohammad Pur
2021-05-13
LibJS: Ensure function declarations don't leak outside function scopes
Linus Groh
2021-04-24
LibJS: Add VM::on_call_stack_emptied callback
Linus Groh
2021-04-22
Everything: Move to SPDX license identifiers in all files.
Brian Gianforcaro
2021-04-13
LibJS: Replace two more uses of unwind(ScopeType::None) with stop_unwind()
Linus Groh
2021-04-02
LibJS: Add initial support for Promises
Linus Groh
2021-03-21
LibJS: Don't track executing AST nodes in a Vector
Andreas Kling
2021-03-21
LibJS: Move AST node stack from VM to Interpreter
Andreas Kling
2021-03-16
LibJS: Implement non-value-producing statements properly
Linus Groh
2021-03-16
LibJS: Make Interpreter::run() a void function
Linus Groh
2021-03-01
LibJS: Keep track of current AST node inside the call stack
Jean-Baptiste Boric
2021-02-23
Everywhere: Rename ASSERT => VERIFY
Andreas Kling
2021-02-10
LibJS: Remove a whole bunch of unnecessary #includes
Andreas Kling
2021-01-12
Libraries: Move to Userland/Libraries/
Andreas Kling