1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:27:35 +00:00

LibJS: Remove unused IndexedProperties::take_{first,last}()

This commit is contained in:
Linus Groh 2022-01-04 21:52:49 +01:00
parent 1116a29c19
commit 0e363e92ef
2 changed files with 0 additions and 19 deletions

View file

@ -124,9 +124,6 @@ public:
void put(u32 index, Value value, PropertyAttributes attributes = default_attributes);
void remove(u32 index);
ValueAndAttributes take_first(Object* this_object);
ValueAndAttributes take_last(Object* this_object);
void append(Value value, PropertyAttributes attributes = default_attributes) { put(array_like_size(), value, attributes); }
IndexedPropertyIterator begin(bool skip_empty = true) const { return IndexedPropertyIterator(*this, 0, skip_empty); };