summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Runtime/Array.h
AgeCommit message (Expand)Author
2020-09-27LibJS: Make native function/property callbacks take VM, not InterpreterAndreas Kling
2020-06-21LibJS+LibWeb: Add JS::Object::inherits(class_name)Andreas Kling
2020-06-20LibJS: More Interpreter::global_object() removalAndreas Kling
2020-06-20LibJS: Pass GlobalObject& to native functions and property accessorsAndreas Kling
2020-06-08LibJS: Interpreter::this_value() => this_value(GlobalObject&)Andreas Kling
2020-05-28LibJS: Object index properties have descriptors; Handle sparse indicesMatthew Olsson
2020-04-23LibJS: Implement Array length setterLinus Groh
2020-04-18LibJS: Make Array constructor take its prototypeAndreas Kling
2020-04-14LibJS: Remove shift, pop, push functions from Array objectLinus Groh
2020-04-06LibJS: Add a number-indexed property storage to all ObjectsAndreas Kling
2020-03-29LibJS+LibWeb: Move native properties to separate getters/settersAndreas Kling
2020-03-28LibJS: Implement Array.prototype.{shift,pop}Linus Groh
2020-03-24LibJS: Use correct |this| value when getting/setting native propertiesAndreas Kling
2020-03-22LibJS: Use FlyString for identifiersAndreas Kling
2020-03-21LibJS: Virtualize access to an Object's own propertiesAndreas Kling
2020-03-20LibJS: Add ArrayPrototype and implement Array.prototype.push()Andreas Kling
2020-03-20LibJS: Support reading/writing elements in an Array via Object get/putAndreas Kling
2020-03-20LibJS: Parse ArrayExpression and start implementing Array objectsAndreas Kling