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

LibJS: Convert parse_temporal_time_string() to ThrowCompletionOr

This commit is contained in:
Linus Groh 2021-09-16 17:54:42 +01:00
parent f86fa12deb
commit 0ccd11ba5f
3 changed files with 4 additions and 6 deletions

View file

@ -108,9 +108,7 @@ ThrowCompletionOr<PlainTime*> to_temporal_time(GlobalObject& global_object, Valu
return throw_completion(exception->value());
// b. Let result be ? ParseTemporalTimeString(string).
result = parse_temporal_time_string(global_object, string);
if (auto* exception = vm.exception())
return throw_completion(exception->value());
result = TRY(parse_temporal_time_string(global_object, string));
// c. Assert: ! IsValidTime(result.[[Hour]], result.[[Minute]], result.[[Second]], result.[[Millisecond]], result.[[Microsecond]], result.[[Nanosecond]]) is true.
VERIFY(is_valid_time(result->hour, result->minute, result->second, result->millisecond, result->microsecond, result->nanosecond));