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
/
AST.cpp
Age
Commit message (
Expand
)
Author
2021-06-14
LibJS: Teach Reference to access call frame arguments directly
Andreas Kling
2021-06-14
LibJS: Access function arguments directly in AST interpreter
Andreas Kling
2021-06-14
LibJS: Track which Identifier nodes refer to function arguments
Andreas Kling
2021-06-14
LibJS: Add support for hex, octal & binary big integer literals
Idan Horowitz
2021-06-12
AK: Rename Vector::append(Vector) => Vector::extend(Vector)
Andreas Kling
2021-06-11
LibJS: Use an enum class instead of 'bool is_generator'
Ali Mohammad Pur
2021-06-11
LibJS: Move is_arrow_function() from FunctionExpression to FunctionNode
Andreas Kling
2021-06-11
LibJS: Fix two accidentally incorrect ScriptFunction constructions
Linus Groh
2021-06-11
LibJS: Switch AST.{h,cpp} to east const
Ali Mohammad Pur
2021-06-11
LibJS: Implement generator functions (only in bytecode mode)
Ali Mohammad Pur
2021-06-10
LibJS: Remove GlobalObject& argument from VM::construct()
Andreas Kling
2021-06-08
LibJS: Handle Proxy with Array target in IsArray() abstract operation
Linus Groh
2021-06-08
LibJS: Make SwitchStatement::execute() return undefined for empty blocks
Marcin Gasperowicz
2021-06-08
LibJS: Support deleting local variables with operator delete
Idan Horowitz
2021-06-08
LibJS: Return undefined from a with statement if no value was generated
Idan Horowitz
2021-06-08
LibJS: Return the last value from a with statement
Idan Horowitz
2021-06-07
LibJS: Move AST bytecode generation virtuals to separate cpp file
Andreas Kling
2021-06-07
LibJS: Add Sub bytecode instruction (subtract values)
Andreas Kling
2021-06-07
LibJS: Some more opcodes for the bytecode VM
Andreas Kling
2021-06-07
LibJS: Start fleshing out a bytecode for the JavaScript engine :^)
Andreas Kling
2021-06-05
LibJS: Replace StringOrSymbol::from_value with Value::to_property_key
Idan Horowitz
2021-06-04
LibJS: Fix functions binding this to global object in strict mode
Ryan Chandler
2021-06-03
Everywhere: Remove accidental '\n' from various outln() invocations
Andreas Kling
2021-05-29
LibJS: Implement destructuring assignments and function parameters
Ali Mohammad Pur
2021-05-11
LibJS: Make super() in catch block work
Linus Groh
2021-05-10
LibJS: Rename RegExpLiteral m_content to m_pattern
Linus Groh
2021-04-25
LibJS: Don't suppress GlobalObject variable lookup exceptions
FalseHonesty
2021-04-24
LibJS: Remove stray '%' from MemberExpression AST dump
Andreas Kling
2021-04-22
Everywhere: Use linusg@serenityos.org for my copyright headers
Linus Groh
2021-04-22
Everything: Move to SPDX license identifiers in all files.
Brian Gianforcaro
2021-04-15
LibJS: Use references in CallExpression::compute_this_and_callee()
Linus Groh
2021-04-14
LibJS: Use reference in MemberExpression::execute()
Linus Groh
2021-04-13
LibJS: Add set_exception() and change throw_exception() to take a reference
Linus Groh
2021-04-13
LibJS: Update empty TryStatement result value to undefined
Linus Groh
2021-04-13
LibJS: Fix return value of TryStatement with finalizer
Linus Groh
2021-04-10
LibJS: Implicitly break for..in loop if the RHS result is nullish
Linus Groh
2021-04-10
LibJS: Update Object::define_accessor() to take both getter and setter
Linus Groh
2021-04-10
LibJS: Let Object::delete_property() return a bool, not Value
Linus Groh
2021-04-07
LibJS: Use MarkedValueList for internal own properties getter functions
Linus Groh
2021-04-05
LibJS: Add Object::get_enumerable_own_property_names() and use it
Linus Groh
2021-04-05
LibJS: Remove this_object parameter from get/put own property functions
Linus Groh
2021-04-03
LibJS: Fix returning from try statement
Linus Groh
2021-04-02
LibJS: Move 'typeof' string functionality from AST to Value
Linus Groh
2021-03-22
Only apply auto-naming of function expressions based on syntax
Andreas Kling
2021-03-21
LibJS: Split Value::Type::Number into Int32 and Double
Andreas Kling
2021-03-21
LibJS: Don't track executing AST nodes in a Vector
Andreas Kling
2021-03-21
LibJS: Only update anonymous function names when necessary
Andreas Kling
2021-03-21
LibJS: Move AST node stack from VM to Interpreter
Andreas Kling
2021-03-16
LibJS: Make an RAII helper for entering/exiting AST nodes
Andreas Kling
2021-03-16
LibJS: Implement non-value-producing statements properly
Linus Groh
[next]