1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:47:45 +00:00

LibJS: Implement Intl.Locale.prototype.calendars property

This commit is contained in:
Timothy Flynn 2022-07-05 12:10:24 -04:00 committed by Linus Groh
parent 028a6b90b1
commit e9bc35d805
6 changed files with 90 additions and 4 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2021, Tim Flynn <trflynn89@serenityos.org>
* Copyright (c) 2021-2022, Tim Flynn <trflynn89@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
@ -10,6 +10,7 @@
#include <AK/Optional.h>
#include <AK/String.h>
#include <AK/Vector.h>
#include <LibJS/Runtime/Completion.h>
#include <LibJS/Runtime/Object.h>
#include <LibJS/Runtime/Value.h>
#include <LibUnicode/Forward.h>
@ -73,4 +74,6 @@ private:
bool m_numeric { false }; // [[Numeric]]
};
Array* calendars_of_locale(GlobalObject& global_object, Locale const& locale);
}