mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:38:12 +00:00
LibJS: Take prepare_temporal_fields() Vector arguments by const&
This commit is contained in:
parent
a4dc1eb330
commit
116c45d668
2 changed files with 2 additions and 2 deletions
|
@ -662,7 +662,7 @@ double to_positive_integer_or_infinity(GlobalObject& global_object, Value argume
|
|||
}
|
||||
|
||||
// 13.46 PrepareTemporalFields ( fields, fieldNames, requiredFields ), https://tc39.es/proposal-temporal/#sec-temporal-preparetemporalfields
|
||||
Object* prepare_temporal_fields(GlobalObject& global_object, Object& fields, Vector<String> field_names, Vector<StringView> required_fields)
|
||||
Object* prepare_temporal_fields(GlobalObject& global_object, Object& fields, Vector<String> const& field_names, Vector<StringView> const& required_fields)
|
||||
{
|
||||
auto& vm = global_object.vm();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue