diff options
author | Linus Groh <mail@linusgroh.de> | 2022-01-04 21:52:49 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-01-04 23:37:26 +0000 |
commit | 0e363e92efbc921a7160d00ebcfa7c479b522472 (patch) | |
tree | 2500623eec385517012316b873e01c5feb77b6a6 /Userland/Libraries/LibJS/Runtime/IndexedProperties.h | |
parent | 1116a29c19c797bd1299aa42827bb69286d3bade (diff) | |
download | serenity-0e363e92efbc921a7160d00ebcfa7c479b522472.zip |
LibJS: Remove unused IndexedProperties::take_{first,last}()
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/IndexedProperties.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/IndexedProperties.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/IndexedProperties.h b/Userland/Libraries/LibJS/Runtime/IndexedProperties.h index 4de1d13854..db9777369e 100644 --- a/Userland/Libraries/LibJS/Runtime/IndexedProperties.h +++ b/Userland/Libraries/LibJS/Runtime/IndexedProperties.h @@ -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); }; |