index
:
serenity
master
topic/trivial_docs
The Serenity Operating System 🐞
cos
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Libraries
/
LibJS
/
Runtime
/
ScriptFunction.cpp
Age
Commit message (
Expand
)
Author
2020-12-08
LibJS: Get rid of Argument and ArgumentVector
Andreas Kling
2020-12-08
LibJS: Stop creating a redundant lexical scope on function call
Andreas Kling
2020-11-29
LibJS: Constructor function's "prototype" property should be writable
Andreas Kling
2020-11-28
LibJS: Add a scope object abstraction
Andreas Kling
2020-11-28
LibJS: Rename Cell::visit_children() => Cell::visit_edges()
Andreas Kling
2020-11-12
LibJS: Throw TypeError when calling class constructor without 'new'
Linus Groh
2020-11-12
LibJS: Refactor ScriptFunction::call() a bit
Linus Groh
2020-11-02
LibJS: Implement 'new.target'
Linus Groh
2020-10-17
LibJS: Prebake the empty object ({}) with a prototype
Andreas Kling
2020-10-13
LibJS: Cache commonly used FlyStrings in the VM
Andreas Kling
2020-10-06
LibJS: Add Object::define_property_without_transition() helper
Andreas Kling
2020-10-04
LibJS: Use String::formatted() for throw_exception() message
Linus Groh
2020-10-04
LibJS: Move "strict mode" state to the call stack
Andreas Kling
2020-10-04
LibJS: Strict mode is now handled by Functions and Programs, not Blocks
Matthew Olsson
2020-09-29
LibJS: Reduce use of Interpreter in LexicalEnvironment
Andreas Kling
2020-09-27
LibJS: Remove a bunch of unnecessary uses of Cell::interpreter()
Andreas Kling
2020-09-27
LibJS: Remove Interpreter& argument to Function::construct()
Andreas Kling
2020-09-27
LibJS: Make native function/property callbacks take VM, not Interpreter
Andreas Kling
2020-09-27
LibJS: Make Function::call() not require an Interpreter&
Andreas Kling
2020-09-27
LibJS: Move scope stack from VM back to Interpreter
Andreas Kling
2020-09-27
LibJS: Move most of Interpreter into VM
Andreas Kling
2020-09-12
LibJS: Extract most of Interpreter's run() into execute_statement()
Linus Groh
2020-08-25
LibJS: Make Interpreter::throw_exception() a void function
Linus Groh
2020-07-23
LibJS: Simplify Cell::initialize()
Andreas Kling
2020-07-01
LibJS: Explicitly pass a "Function& new_target" to Function::construct
Matthew Olsson
2020-06-29
LibJS: Initial class implementation; allow super expressions in object
Jack Karamanian
2020-06-29
LibJS: Define the "constructor" property on ScriptFunction's prototype
Jack Karamanian
2020-06-20
LibJS: Object::initialize() overrides must always call base class
Andreas Kling
2020-06-20
LibJS: Split more native object constructors into construct/initialize
Andreas Kling
2020-06-20
LibJS: Make Value::to_object() take a GlobalObject&
Andreas Kling
2020-06-20
LibJS: More Interpreter::global_object() removal
Andreas Kling
2020-06-20
LibJS: Move native objects towards two-pass construction
Andreas Kling
2020-06-20
LibJS: Pass GlobalObject& to native functions and property accessors
Andreas Kling
2020-06-11
LibJS: Consolidate error messages into ErrorTypes.h
Matthew Olsson
2020-06-08
LibJS: Make more Interpreter functions take a GlobalObject&
Andreas Kling
2020-06-08
LibJS: Interpreter::this_value() => this_value(GlobalObject&)
Andreas Kling
2020-06-08
LibJS: Pass GlobalObject& to AST node execute() functions
Andreas Kling
2020-06-08
LibJS+LibWeb: Remove a bunch of calls to Interpreter::global_object()
Andreas Kling
2020-05-30
LibJS: Throw a TypeError when an arrow function is used as a constructor
Jack Karamanian
2020-05-30
LibJS: Don't define the "prototype" property for arrow functions
Jack Karamanian
2020-05-30
LibJS: Set the bound |this| value to the |this| value of the current
Jack Karamanian
2020-05-30
LibJS: Track whether ScriptFunctions and FunctionExpressions are arrow
Jack Karamanian
2020-05-28
LibJS: Object index properties have descriptors; Handle sparse indices
Matthew Olsson
2020-05-27
LibJS: Simplify and normalize publicly-exposed Object functions
Matthew Olsson
2020-05-18
LibJS: Change Value::to_object(Heap& -> Interpreter&)
Linus Groh
2020-05-06
LibJS: Function.length respects default and rest parameters
Matthew Olsson
2020-05-04
LibJS: Implement rest parameters
Linus Groh
2020-05-03
LibJS: Add function default arguments
Matthew Olsson
2020-05-02
LibJS: Add "name" property to functions
Linus Groh
2020-04-28
LibJS: Implement correct attributes for (almost) all properties
mattco98
[next]