mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 14:27:35 +00:00
LibJS: Convert internal_own_property_keys() to ThrowCompletionOr
This commit is contained in:
parent
fbfb0bb908
commit
ee8380edea
15 changed files with 56 additions and 92 deletions
|
@ -93,7 +93,7 @@ JS::ThrowCompletionOr<bool> ConsoleGlobalObject::internal_delete(JS::PropertyNam
|
|||
return m_window_object->internal_delete(property_name);
|
||||
}
|
||||
|
||||
JS::MarkedValueList ConsoleGlobalObject::internal_own_property_keys() const
|
||||
JS::ThrowCompletionOr<JS::MarkedValueList> ConsoleGlobalObject::internal_own_property_keys() const
|
||||
{
|
||||
return m_window_object->internal_own_property_keys();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue