LibJS: Convert create_data_property_or_throw() to ThrowCompletionOr

This commit is contained in:
Linus Groh 2021-10-03 01:18:46 +01:00
commit 364dd42fc8
Notes: sideshowbarker 2024-07-18 03:07:25 +09:00
30 changed files with 148 additions and 167 deletions

View file

@ -1082,7 +1082,7 @@ ThrowCompletionOr<Object*> prepare_temporal_fields(GlobalObject& global_object,
}
// d. Perform ! CreateDataPropertyOrThrow(result, property, value).
result->create_data_property_or_throw(property, value);
MUST(result->create_data_property_or_throw(property, value));
}
// 4. Return result.