1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:57:43 +00:00

LibJS: Drop the Temporal prefix from TemporalMissingRequiredProperty

This allows us to use it for other exposed JS APIs that accept options
objects.
This commit is contained in:
Idan Horowitz 2021-09-29 00:58:10 +03:00
parent c3810b827a
commit 5ce468338e
5 changed files with 11 additions and 11 deletions

View file

@ -1060,7 +1060,7 @@ ThrowCompletionOr<Object*> prepare_temporal_fields(GlobalObject& global_object,
// i. If requiredFields contains property, then
if (required_fields.contains_slow(property)) {
// 1. Throw a TypeError exception.
return vm.throw_completion<TypeError>(global_object, ErrorType::TemporalMissingRequiredProperty, property);
return vm.throw_completion<TypeError>(global_object, ErrorType::MissingRequiredProperty, property);
}
// ii. If property is in the Property column of Table 13, then
// NOTE: The other properties in the table are automatically handled as their default value is undefined