1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:07:45 +00:00

LibJS: Convert StringIteratorPrototype functions to ThrowCompletionOr

This commit is contained in:
Idan Horowitz 2021-10-29 00:55:46 +03:00
parent 720bb21ee2
commit 4c3ea0bb91
2 changed files with 4 additions and 4 deletions

View file

@ -22,7 +22,7 @@ void StringIteratorPrototype::initialize(GlobalObject& global_object)
{ {
auto& vm = this->vm(); auto& vm = this->vm();
Object::initialize(global_object); Object::initialize(global_object);
define_old_native_function(vm.names.next, next, 0, Attribute::Configurable | Attribute::Writable); define_native_function(vm.names.next, next, 0, Attribute::Configurable | Attribute::Writable);
// 22.1.5.1.2 %StringIteratorPrototype% [ @@toStringTag ], https://tc39.es/ecma262/#sec-%stringiteratorprototype%-@@tostringtag // 22.1.5.1.2 %StringIteratorPrototype% [ @@toStringTag ], https://tc39.es/ecma262/#sec-%stringiteratorprototype%-@@tostringtag
define_direct_property(*vm.well_known_symbol_to_string_tag(), js_string(global_object.heap(), "String Iterator"), Attribute::Configurable); define_direct_property(*vm.well_known_symbol_to_string_tag(), js_string(global_object.heap(), "String Iterator"), Attribute::Configurable);
@ -33,9 +33,9 @@ StringIteratorPrototype::~StringIteratorPrototype()
} }
// 22.1.5.1.1 %StringIteratorPrototype%.next ( ), https://tc39.es/ecma262/#sec-%stringiteratorprototype%.next // 22.1.5.1.1 %StringIteratorPrototype%.next ( ), https://tc39.es/ecma262/#sec-%stringiteratorprototype%.next
JS_DEFINE_OLD_NATIVE_FUNCTION(StringIteratorPrototype::next) JS_DEFINE_NATIVE_FUNCTION(StringIteratorPrototype::next)
{ {
auto* iterator = TRY_OR_DISCARD(typed_this_value(global_object)); auto* iterator = TRY(typed_this_value(global_object));
if (iterator->done()) if (iterator->done())
return create_iterator_result_object(global_object, js_undefined(), true); return create_iterator_result_object(global_object, js_undefined(), true);

View file

@ -21,7 +21,7 @@ public:
virtual ~StringIteratorPrototype() override; virtual ~StringIteratorPrototype() override;
private: private:
JS_DECLARE_OLD_NATIVE_FUNCTION(next); JS_DECLARE_NATIVE_FUNCTION(next);
}; };
} }