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

LibJS/Bytecode: Move Append impl to CommonImplementations

This commit is contained in:
Simon Wanner 2023-10-29 17:20:51 +01:00 committed by Andreas Kling
parent 3dc5c8d28e
commit 516bb01082
3 changed files with 59 additions and 57 deletions

View file

@ -38,5 +38,6 @@ ThrowCompletionOr<NonnullGCPtr<Object>> super_call_with_argument_array(VM&, Valu
Object* iterator_to_object(VM&, IteratorRecord);
IteratorRecord object_to_iterator(VM&, Object&);
ThrowCompletionOr<NonnullGCPtr<Array>> iterator_to_array(VM&, Value iterator);
ThrowCompletionOr<void> append(VM& vm, Value lhs, Value rhs, bool is_spread);
}