1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:07:44 +00:00

LibJS: Move GetObjectPropertyIterator impl to CommonImplementations

This commit is contained in:
Simon Wanner 2023-10-29 21:15:52 +01:00 committed by Andreas Kling
parent 25642dfe87
commit ad81bf47bb
3 changed files with 90 additions and 84 deletions

View file

@ -42,5 +42,6 @@ ThrowCompletionOr<void> append(VM& vm, Value lhs, Value rhs, bool is_spread);
ThrowCompletionOr<Value> delete_by_id(Bytecode::Interpreter&, Value base, IdentifierTableIndex identifier);
ThrowCompletionOr<Value> delete_by_value(Bytecode::Interpreter&, Value base, Value property_key_value);
ThrowCompletionOr<Value> delete_by_value_with_this(Bytecode::Interpreter&, Value base, Value property_key_value, Value this_value);
ThrowCompletionOr<Object*> get_object_property_iterator(VM&, Value);
}