mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 05:09:12 +00:00
LibJS: Format IndexedProperties.cpp
This commit is contained in:
parent
0c2d36d1cd
commit
9a00699983
Notes:
sideshowbarker
2024-07-19 02:50:45 +09:00
Author: https://github.com/alimpfard
Commit: 9a00699983
Pull-request: https://github.com/SerenityOS/serenity/pull/3432
Reviewed-by: https://github.com/awesomekling
Reviewed-by: https://github.com/linusg ✅
1 changed files with 2 additions and 2 deletions
|
@ -318,7 +318,7 @@ void IndexedProperties::insert(u32 index, Value value, PropertyAttributes attrib
|
|||
m_storage->insert(index, value, attributes);
|
||||
}
|
||||
|
||||
ValueAndAttributes IndexedProperties::take_first(Object *this_object)
|
||||
ValueAndAttributes IndexedProperties::take_first(Object* this_object)
|
||||
{
|
||||
auto first = m_storage->take_first();
|
||||
if (first.value.is_accessor())
|
||||
|
@ -326,7 +326,7 @@ ValueAndAttributes IndexedProperties::take_first(Object *this_object)
|
|||
return first;
|
||||
}
|
||||
|
||||
ValueAndAttributes IndexedProperties::take_last(Object *this_object)
|
||||
ValueAndAttributes IndexedProperties::take_last(Object* this_object)
|
||||
{
|
||||
auto last = m_storage->take_last();
|
||||
if (last.value.is_accessor())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue