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
/
Runtime
/
ECMAScriptFunctionObject.cpp
Age
Commit message (
Expand
)
Author
2021-10-15
LibJS: Add comment clarifying the order of function properties
davidot
2021-10-15
LibJS: Define length and name in function in correct order
davidot
2021-10-14
LibJS: Use GlobalObject::associated_realm() for function object realms
Linus Groh
2021-10-13
LibJS: Convert to_object() to ThrowCompletionOr
Linus Groh
2021-10-09
LibJS: Convert get_binding_value() to ThrowCompletionOr
Linus Groh
2021-10-09
LibJS: Convert set_mutable_binding() to ThrowCompletionOr
Linus Groh
2021-10-09
LibJS: Convert initialize_binding() to ThrowCompletionOr
Linus Groh
2021-10-09
LibJS: Convert create_immutable_binding() to ThrowCompletionOr
Linus Groh
2021-10-09
LibJS: Convert create_mutable_binding() to ThrowCompletionOr
Linus Groh
2021-10-09
LibJS: Convert has_binding() to ThrowCompletionOr
Linus Groh
2021-10-09
LibJS: Convert bind_this_value() to ThrowCompletionOr
Linus Groh
2021-10-09
LibJS: Convert get_this_binding() to ThrowCompletionOr
Linus Groh
2021-10-09
LibJS: Add callee realm fallback to ordinary_call_bind_this()
Linus Groh
2021-10-09
LibJS: Decouple new_function_environment() from FunctionObject
Linus Groh
2021-10-09
LibJS: Move ordinary_call_bind_this() to ECMAScriptFunctionObject
Linus Groh
2021-10-09
LibJS: Move prepare_for_ordinary_call() to ECMAScriptFunctionObject
Linus Groh
2021-10-09
LibJS: Implement [[Call]] and [[Construct]] internal slots properly
Linus Groh
2021-10-08
LibJS: Elide some declarative environments in ECMAScript function calls
Andreas Kling
2021-10-08
LibJS: Propagate "contains direct call to eval()" flag from parser
Andreas Kling
2021-10-08
LibJS: Pre-size a HashTable in function_declaration_instantiation()
Andreas Kling
2021-10-08
LibJS: Avoid a FlyString copy in ECMAScriptFunctionObject
Andreas Kling
2021-10-05
LibJS: Add an optimization to avoid needless arguments object creation
Linus Groh
2021-10-05
LibJS: Set arguments_object_needed = false if scope_body == nullptr
Linus Groh
2021-10-05
LibJS: Stop iterating lexically declared names once 'arguments' is found
Linus Groh
2021-10-05
LibJS: Rename needs_argument_object to arguments_object_needed
Linus Groh
2021-10-03
LibJS: Convert define_property_or_throw() to ThrowCompletionOr
Linus Groh
2021-10-03
LibJS: Convert create_data_property_or_throw() to ThrowCompletionOr
Linus Groh
2021-10-02
LibJS+LibWeb: Use Object::set_prototype() in more places
Linus Groh
2021-09-30
LibJS: Make scoping follow the spec
davidot
2021-09-29
LibJS: Convert internal_set_prototype_of() to ThrowCompletionOr
Linus Groh
2021-09-28
LibJS: Avoid unnecessary HashMap copy in ECMAScriptFunctionObject
Andreas Kling
2021-09-25
LibJS: Move [[BoundThis]] and [[BoundArguments]] to BoundFunction
Linus Groh
2021-09-25
LibJS: Move has_simple_parameter_list to ECMAScriptFunctionObject
Linus Groh
2021-09-25
LibJS: Move [[Fields]] to ECMAScriptFunctionObject
Linus Groh
2021-09-25
LibJS: Move [[HomeObject]] to ECMAScriptFunctionObject
Linus Groh
2021-09-25
LibJS: Move [[ThisMode]] to ECMAScriptFunctionObject
Linus Groh
2021-09-25
LibJS: Rename ECMAScriptFunctionObject members to match spec names
Linus Groh
2021-09-25
LibJS: Rename OrdinaryFunctionObject to ECMAScriptFunctionObject
Linus Groh