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
/
GeneratorObject.cpp
Age
Commit message (
Expand
)
Author
2022-12-15
LibJS: Convert Heap::allocate{,_without_realm}() to NonnullGCPtr
Linus Groh
2022-12-14
LibJS: Remove Object(Object& prototype) footgun
Andreas Kling
2022-12-14
LibJS: Convert Object::create() to NonnullGCPtr
Linus Groh
2022-12-14
LibJS: Convert GeneratorObject::create() to NonnullGCPtr
Linus Groh
2022-12-12
LibJS: Keep GeneratorObject's stored execution context's internals alive
Luke Wilde
2022-12-06
AK+Everywhere: Rename String to DeprecatedString
Linus Groh
2022-11-26
LibJS: Switch to bytecode interpreter to run generator functions for AST
Luke Wilde
2022-11-26
LibJS: Perform received abrupt generator completions in the generator
Luke Wilde
2022-08-27
LibJS: Move intrinsics to the realm
Linus Groh
2022-08-23
LibJS: Replace GlobalObject with VM in remaining AOs [Part 19/19]
Linus Groh
2022-08-23
LibJS: Replace GlobalObject with VM in Value AOs [Part 4/19]
Linus Groh
2022-08-23
LibJS+LibWeb: Replace GlobalObject with Realm in Heap::allocate<T>()
Linus Groh
2022-08-23
LibJS+LibWeb: Replace GlobalObject with Realm in create() functions
Linus Groh
2022-08-23
LibJS+LibWeb: Replace GlobalObject with Realm in initialize() functions
Linus Groh
2022-08-23
LibJS+LibWeb: Replace GlobalObject with Realm in object constructors
Linus Groh
2022-04-18
LibJS: Make the BC generator.next(value) work
Ali Mohammad Pur
2022-04-18
LibJS: Avoid copying the frame into the interpreter in BC generators
Ali Mohammad Pur
2022-04-03
LibJS: Remove a bunch of gratuitous JS namespace qualifiers
Linus Groh
2022-03-16
Libraries: Use default constructors/destructors in LibJS
Lenny Maiorani
2022-02-13
LibJS: More properly implement scoping rules in bytecode codegen
Ali Mohammad Pur
2022-02-08
LibJS+Everywhere: Remove VM::exception() and most related functions
davidot
2022-01-16
LibJS: Rename GeneratorObjectPrototype to GeneratorPrototype
Linus Groh
2021-11-21
LibJS: Don't set a prototype property on async functions
davidot
2021-11-14
LibJS: Convert push_execution_context() to ThrowCompletionOr
Linus Groh
2021-11-12
LibJS+LibTest+js: Convert BC::Interpreter::run to ThrowCompletionOr<>
Ali Mohammad Pur
2021-11-12
LibJS: Implement async functions as generator functions in BC mode
Ali Mohammad Pur
2021-11-09
LibJS: Convert GeneratorObject to ThrowCompletionOr
Idan Horowitz
2021-10-17
LibJS: Convert to_double() to ThrowCompletionOr
Idan Horowitz
2021-10-13
LibJS: Convert to_object() to ThrowCompletionOr
Linus Groh
2021-10-03
LibJS: Convert Object::get() to ThrowCompletionOr
Linus Groh
2021-09-25
LibJS: Rename OrdinaryFunctionObject to ECMAScriptFunctionObject
Linus Groh
2021-09-11
LibJS: Visit GeneratorObject's previous value if it's any kind of Cell
Idan Horowitz
2021-09-11
LibJS+LibWeb+Spreadsheet: Upcall visit_edges() via Base typedef
Andreas Kling
2021-07-06
LibJS: Remove the non-standard put helper and replace it's usages
Idan Horowitz
2021-07-01
LibJS: Drop "Record" suffix from all the *Environment record classes
Andreas Kling
2021-06-27
LibJS: Rename ScriptFunction => OrdinaryFunctionObject
Andreas Kling
2021-06-24
LibJS: Rename CallFrame => ExecutionContext
Andreas Kling
2021-06-22
LibJS: Split the per-call-frame environment into lexical and variable
Andreas Kling
2021-06-21
LibJS: Rename Environment Records so they match the spec :^)
Andreas Kling
2021-06-19
LibJS: Add the remaining generator objects
Matthew Olsson
2021-06-16
LibJS: Replace Object's create_empty() with create() taking a prototype
Linus Groh
2021-06-13
LibJS: Add ECMA-262 section/title/URL comments almost everywhere
Linus Groh
2021-06-11
LibJS: Implement generator functions (only in bytecode mode)
Ali Mohammad Pur