1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 20:28:11 +00:00

LibJS: Make new_target parameter of all Temporal AOs a const*

These are passed to ordinary_create_from_constructor() in each case,
which takes the parameter as a const&, so these can also be const.
This commit is contained in:
Linus Groh 2021-09-09 21:10:12 +01:00
parent cf71805aa8
commit e4c07c5b8f
20 changed files with 20 additions and 20 deletions

View file

@ -223,7 +223,7 @@ ISOYearMonth constrain_iso_year_month(double year, double month)
}
// 9.5.7 CreateTemporalYearMonth ( isoYear, isoMonth, calendar, referenceISODay [ , newTarget ] ), https://tc39.es/proposal-temporal/#sec-temporal-createtemporalyearmonth
PlainYearMonth* create_temporal_year_month(GlobalObject& global_object, i32 iso_year, u8 iso_month, Object& calendar, u8 reference_iso_day, FunctionObject* new_target)
PlainYearMonth* create_temporal_year_month(GlobalObject& global_object, i32 iso_year, u8 iso_month, Object& calendar, u8 reference_iso_day, FunctionObject const* new_target)
{
auto& vm = global_object.vm();