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
commit 516bb01082
Notes: sideshowbarker 2024-07-16 23:59:28 +09:00
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);
}