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

LibJS: Implement the CompareArrayElements AO

This commit is contained in:
Linus Groh 2022-06-13 07:53:58 +01:00
parent aa5d5bf1c8
commit 5ddf0b0c99
2 changed files with 60 additions and 0 deletions

View file

@ -1,5 +1,6 @@
/*
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
* Copyright (c) 2020-2022, Linus Groh <linusg@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
@ -50,4 +51,6 @@ private:
bool m_length_writable { true };
};
ThrowCompletionOr<double> compare_array_elements(GlobalObject&, Value x, Value y, FunctionObject* comparefn);
}