mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-27 01:50:24 +00:00
LibJS: Remove the unused IndexedProperties::append_all method
This commit is contained in:
parent
22851287b1
commit
864beb0bd5
Notes:
sideshowbarker
2024-07-18 12:07:47 +09:00
Author: https://github.com/IdanHo Commit: https://github.com/SerenityOS/serenity/commit/864beb0bd50 Pull-request: https://github.com/SerenityOS/serenity/pull/8101 Reviewed-by: https://github.com/linusg
2 changed files with 0 additions and 14 deletions
|
@ -300,19 +300,6 @@ ValueAndAttributes IndexedProperties::take_last(Object* this_object)
|
|||
return last;
|
||||
}
|
||||
|
||||
void IndexedProperties::append_all(Object* this_object, const IndexedProperties& properties, bool evaluate_accessors)
|
||||
{
|
||||
if (m_storage->is_simple_storage() && !properties.m_storage->is_simple_storage())
|
||||
switch_to_generic_storage();
|
||||
|
||||
for (auto it = properties.begin(false); it != properties.end(); ++it) {
|
||||
const auto& element = it.value_and_attributes(this_object, evaluate_accessors);
|
||||
if (this_object && this_object->vm().exception())
|
||||
return;
|
||||
m_storage->put(m_storage->array_like_size(), element.value, element.attributes);
|
||||
}
|
||||
}
|
||||
|
||||
void IndexedProperties::set_array_like_size(size_t new_size)
|
||||
{
|
||||
auto current_array_like_size = array_like_size();
|
||||
|
|
|
@ -133,7 +133,6 @@ public:
|
|||
ValueAndAttributes take_last(Object* this_object);
|
||||
|
||||
void append(Value value, PropertyAttributes attributes = default_attributes) { put(nullptr, array_like_size(), value, attributes, false); }
|
||||
void append_all(Object* this_object, const IndexedProperties& properties, bool evaluate_accessors = true);
|
||||
|
||||
IndexedPropertyIterator begin(bool skip_empty = true) const { return IndexedPropertyIterator(*this, 0, skip_empty); };
|
||||
IndexedPropertyIterator end() const { return IndexedPropertyIterator(*this, array_like_size(), false); };
|
||||
|
|
Loading…
Reference in a new issue