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.h
Age
Commit message (
Expand
)
Author
2022-05-01
LibJS: Rename scope to environment
Linus Groh
2022-04-20
LibJS: De-duplicate ClassFieldDefinition Records
Linus Groh
2022-04-11
LibJS: Add missing steps and spec comments to PerformEval
Luke Wilde
2022-04-01
Everywhere: Run clang-format
Idan Horowitz
2022-03-16
Libraries: Use default constructors/destructors in LibJS
Lenny Maiorani
2022-03-14
LibJS: Implement default values for function parameters in BC
Ali Mohammad Pur
2022-02-13
LibJS: Add fast_is<T>() for things that were hot in RTTI
Andreas Kling
2022-02-09
LibJS: Replace uses of MarkedValueList with MarkedVector<Value>
Linus Groh
2022-02-08
LibWeb: Introduce the Environment Settings Object
Luke Wilde
2022-01-31
LibJS: Store ECMAScriptFunctionObject bytecode in an OwnPtr
Andreas Kling
2022-01-31
LibJS: Make JS::ECMAScriptFunctionObject smaller by reordering members
Andreas Kling
2022-01-22
LibJS: Add ScriptOrModule to execution context and track it everywhere
davidot
2022-01-22
LibJS: Move async_block_start out of ECMAScriptFunctionObject
davidot
2022-01-19
LibJS: Pass source text to ECMAScriptFunctionObject::create()
Linus Groh
2022-01-16
LibJS: Allow passing prototype to ECMAScriptFunctionObject::create()
Linus Groh
2022-01-16
LibJS: Rename FunctionKind::{Regular => Normal}
Linus Groh
2021-12-29
LibJS: Implement and use the MakeMethod AO
Linus Groh
2021-11-21
LibJS: Don't set a prototype property on async functions
davidot
2021-11-14
LibJS: Convert prepare_for_ordinary_call() to ThrowCompletionOr
Linus Groh
2021-11-10
LibJS: Add support for async functions
Idan Horowitz
2021-10-24
LibJS: Rename PropertyName to PropertyKey
Andreas Kling
2021-10-20
LibJS: Use ClassFieldInitializerStatement for class fields
davidot
2021-10-20
LibJS: Add parsing and evaluation of private fields and methods
davidot
2021-10-20
LibJS: Add PrivateEnvironment
davidot
2021-10-20
LibJS: Make class definition evaluation more spec like in ordering
davidot
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: Propagate "contains direct call to eval()" flag from parser
Andreas Kling
2021-10-05
LibJS: Add an optimization to avoid needless arguments object creation
Linus Groh
2021-09-30
LibJS: Make scoping follow the spec
davidot
2021-09-25
LibJS: Move has_constructor() from NativeFunction to FunctionObject
Linus Groh
2021-09-25
LibJS: Remove unused FunctionObject::environment()
Linus Groh
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 [[ConstructorKind]] 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