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
/
Array.cpp
Age
Commit message (
Expand
)
Author
2020-10-13
LibJS: Cache commonly used FlyStrings in the VM
Andreas Kling
2020-09-27
LibJS: Remove a bunch of unnecessary uses of Cell::interpreter()
Andreas Kling
2020-09-27
LibJS: Make native function/property callbacks take VM, not Interpreter
Andreas Kling
2020-09-27
LibJS: Move most of Interpreter into VM
Andreas Kling
2020-06-23
LibJS: Clarify Object (base class) construction somewhat
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: Interpreter::this_value() => this_value(GlobalObject&)
Andreas Kling
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: Pass Interpreter& to Value::to_number() et al.
Linus Groh
2020-05-18
LibJS: Change Value::to_object(Heap& -> Interpreter&)
Linus Groh
2020-05-01
LibJS: Make Array.length non-configurable
Linus Groh
2020-04-29
LibJS: Set Array length attributes to "Configurable | Writable"
mattco98
2020-04-23
LibJS: Implement Array length setter
Linus Groh
2020-04-18
LibJS: Move builtin prototypes to the global object
Andreas Kling
2020-04-18
LibJS+LibWeb: Pass prototype to Object constructor
Andreas Kling
2020-04-18
LibJS: Make Array constructor take its prototype
Andreas Kling
2020-04-14
LibJS: Remove shift, pop, push functions from Array object
Linus Groh
2020-04-10
LibJS: Throw real TypeError, ReferenceError, etc objects
Andreas Kling
2020-04-06
LibJS: Add a number-indexed property storage to all Objects
Andreas Kling
2020-03-29
LibJS+LibWeb: Move native properties to separate getters/setters
Andreas Kling
2020-03-28
LibJS: Implement Array.prototype.{shift,pop}
Linus Groh
2020-03-24
LibJS: Use correct |this| value when getting/setting native properties
Andreas Kling
2020-03-22
LibJS: Use FlyString for identifiers
Andreas Kling
2020-03-21
LibJS: Virtualize access to an Object's own properties
Andreas Kling
2020-03-20
LibJS: Add ArrayPrototype and implement Array.prototype.push()
Andreas Kling
2020-03-20
LibJS: Parse ArrayExpression and start implementing Array objects
Andreas Kling