mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
LibJS: Use ThrowCompletionOr in species_constructor()
Also add spec step comments to it as well as a missing exception check while we're here.
This commit is contained in:
parent
c4c40f4cf3
commit
3d43eb0774
Notes:
sideshowbarker
2024-07-18 03:54:27 +09:00
Author: https://github.com/linusg Commit: https://github.com/SerenityOS/serenity/commit/3d43eb0774c Pull-request: https://github.com/SerenityOS/serenity/pull/10046 Reviewed-by: https://github.com/IdanHo Reviewed-by: https://github.com/awesomekling
@ -97,25 +97,38 @@ ThrowCompletionOr<MarkedValueList> create_list_from_array_like(GlobalObject& glo
|
||||
}
|
||||
|
||||
// 7.3.22 SpeciesConstructor ( O, defaultConstructor ), https://tc39.es/ecma262/#sec-speciesconstructor
|
||||
FunctionObject* species_constructor(GlobalObject& global_object, Object const& object, FunctionObject& default_constructor)
|
||||
ThrowCompletionOr<FunctionObject*> species_constructor(GlobalObject& global_object, Object const& object, FunctionObject& default_constructor)
|
||||
{
|
||||
auto& vm = global_object.vm();
|
||||
|
||||
// 1. Let C be ? Get(O, "constructor").
|
||||
auto constructor = object.get(vm.names.constructor);
|
||||
if (vm.exception())
|
||||
return nullptr;
|
||||
if (auto* exception = vm.exception())
|
||||
return throw_completion(exception->value());
|
||||
|
||||
// 2. If C is undefined, return defaultConstructor.
|
||||
if (constructor.is_undefined())
|
||||
return &default_constructor;
|
||||
if (!constructor.is_object()) {
|
||||
vm.throw_exception<TypeError>(global_object, ErrorType::NotAConstructor, constructor.to_string_without_side_effects());
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
// 3. If Type(C) is not Object, throw a TypeError exception.
|
||||
if (!constructor.is_object())
|
||||
return vm.throw_completion<TypeError>(global_object, ErrorType::NotAConstructor, constructor.to_string_without_side_effects());
|
||||
|
||||
// 4. Let S be ? Get(C, @@species).
|
||||
auto species = constructor.as_object().get(*vm.well_known_symbol_species());
|
||||
if (auto* exception = vm.exception())
|
||||
return throw_completion(exception->value());
|
||||
|
||||
// 5. If S is either undefined or null, return defaultConstructor.
|
||||
if (species.is_nullish())
|
||||
return &default_constructor;
|
||||
|
||||
// 6. If IsConstructor(S) is true, return S.
|
||||
if (species.is_constructor())
|
||||
return &species.as_function();
|
||||
vm.throw_exception<TypeError>(global_object, ErrorType::NotAConstructor, species.to_string_without_side_effects());
|
||||
return nullptr;
|
||||
|
||||
// 7. Throw a TypeError exception.
|
||||
return vm.throw_completion<TypeError>(global_object, ErrorType::NotAConstructor, species.to_string_without_side_effects());
|
||||
}
|
||||
|
||||
// 7.3.24 GetFunctionRealm ( obj ), https://tc39.es/ecma262/#sec-getfunctionrealm
|
||||
|
@ -22,7 +22,7 @@ Reference make_super_property_reference(GlobalObject&, Value actual_this, String
|
||||
ThrowCompletionOr<Value> require_object_coercible(GlobalObject&, Value);
|
||||
size_t length_of_array_like(GlobalObject&, Object const&);
|
||||
ThrowCompletionOr<MarkedValueList> create_list_from_array_like(GlobalObject&, Value, Function<ThrowCompletionOr<void>(Value)> = {});
|
||||
FunctionObject* species_constructor(GlobalObject&, Object const&, FunctionObject& default_constructor);
|
||||
ThrowCompletionOr<FunctionObject*> species_constructor(GlobalObject&, Object const&, FunctionObject& default_constructor);
|
||||
Realm* get_function_realm(GlobalObject&, FunctionObject const&);
|
||||
bool is_compatible_property_descriptor(bool extensible, PropertyDescriptor const&, Optional<PropertyDescriptor> const& current);
|
||||
bool validate_and_apply_property_descriptor(Object*, PropertyName const&, bool extensible, PropertyDescriptor const&, Optional<PropertyDescriptor> const& current);
|
||||
|
@ -71,9 +71,7 @@ JS_DEFINE_NATIVE_FUNCTION(ArrayBufferPrototype::slice)
|
||||
|
||||
auto new_length = max(final - first, 0.0);
|
||||
|
||||
auto constructor = species_constructor(global_object, *array_buffer_object, *global_object.array_buffer_constructor());
|
||||
if (vm.exception())
|
||||
return {};
|
||||
auto* constructor = TRY_OR_DISCARD(species_constructor(global_object, *array_buffer_object, *global_object.array_buffer_constructor()));
|
||||
|
||||
MarkedValueList arguments(vm.heap());
|
||||
arguments.append(Value(new_length));
|
||||
|
@ -43,9 +43,7 @@ JS_DEFINE_NATIVE_FUNCTION(PromisePrototype::then)
|
||||
return {};
|
||||
auto on_fulfilled = vm.argument(0);
|
||||
auto on_rejected = vm.argument(1);
|
||||
auto* constructor = species_constructor(global_object, *promise, *global_object.promise_constructor());
|
||||
if (vm.exception())
|
||||
return {};
|
||||
auto* constructor = TRY_OR_DISCARD(species_constructor(global_object, *promise, *global_object.promise_constructor()));
|
||||
auto result_capability = new_promise_capability(global_object, constructor);
|
||||
if (vm.exception())
|
||||
return {};
|
||||
@ -66,9 +64,7 @@ JS_DEFINE_NATIVE_FUNCTION(PromisePrototype::finally)
|
||||
auto* promise = vm.this_value(global_object).to_object(global_object);
|
||||
if (!promise)
|
||||
return {};
|
||||
auto* constructor = species_constructor(global_object, *promise, *global_object.promise_constructor());
|
||||
if (vm.exception())
|
||||
return {};
|
||||
auto* constructor = TRY_OR_DISCARD(species_constructor(global_object, *promise, *global_object.promise_constructor()));
|
||||
Value then_finally;
|
||||
Value catch_finally;
|
||||
auto on_finally = vm.argument(0);
|
||||
|
@ -515,9 +515,7 @@ JS_DEFINE_NATIVE_FUNCTION(RegExpPrototype::symbol_match_all)
|
||||
if (vm.exception())
|
||||
return {};
|
||||
|
||||
auto* constructor = species_constructor(global_object, *regexp_object, *global_object.regexp_constructor());
|
||||
if (vm.exception())
|
||||
return {};
|
||||
auto* constructor = TRY_OR_DISCARD(species_constructor(global_object, *regexp_object, *global_object.regexp_constructor()));
|
||||
|
||||
auto flags_value = regexp_object->get(vm.names.flags);
|
||||
if (vm.exception())
|
||||
@ -784,9 +782,7 @@ JS_DEFINE_NATIVE_FUNCTION(RegExpPrototype::symbol_split)
|
||||
return {};
|
||||
auto string_view = string.view();
|
||||
|
||||
auto* constructor = species_constructor(global_object, *regexp_object, *global_object.regexp_constructor());
|
||||
if (vm.exception())
|
||||
return {};
|
||||
auto* constructor = TRY_OR_DISCARD(species_constructor(global_object, *regexp_object, *global_object.regexp_constructor()));
|
||||
|
||||
auto flags_object = regexp_object->get(vm.names.flags);
|
||||
if (vm.exception())
|
||||
|
@ -175,9 +175,7 @@ static TypedArrayBase* typed_array_species_create(GlobalObject& global_object, T
|
||||
|
||||
VERIFY(typed_array_default_constructor);
|
||||
|
||||
auto* constructor = species_constructor(global_object, exemplar, *typed_array_default_constructor);
|
||||
if (vm.exception())
|
||||
return nullptr;
|
||||
auto* constructor = TRY_OR_DISCARD(species_constructor(global_object, exemplar, *typed_array_default_constructor));
|
||||
|
||||
auto* result = typed_array_create(global_object, *constructor, move(arguments));
|
||||
if (vm.exception())
|
||||
|
Loading…
Reference in New Issue
Block a user