소스 검색

LibJS: Convert MapIteratorPrototype functions to ThrowCompletionOr

Idan Horowitz 3 년 전
부모
커밋
f1e215ea3e
2개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 3 3
      Userland/Libraries/LibJS/Runtime/MapIteratorPrototype.cpp
  2. 1 1
      Userland/Libraries/LibJS/Runtime/MapIteratorPrototype.h

+ 3 - 3
Userland/Libraries/LibJS/Runtime/MapIteratorPrototype.cpp

@@ -23,7 +23,7 @@ void MapIteratorPrototype::initialize(GlobalObject& global_object)
     auto& vm = this->vm();
     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);
     define_direct_property(*vm.well_known_symbol_to_string_tag(), js_string(global_object.heap(), "Map Iterator"), Attribute::Configurable);
 }
 
@@ -32,9 +32,9 @@ MapIteratorPrototype::~MapIteratorPrototype()
 }
 
 // 24.1.5.2.1 %MapIteratorPrototype%.next ( ), https://tc39.es/ecma262/#sec-%mapiteratorprototype%.next
-JS_DEFINE_OLD_NATIVE_FUNCTION(MapIteratorPrototype::next)
+JS_DEFINE_NATIVE_FUNCTION(MapIteratorPrototype::next)
 {
-    auto* map_iterator = TRY_OR_DISCARD(typed_this_value(global_object));
+    auto* map_iterator = TRY(typed_this_value(global_object));
     if (map_iterator->done())
         return create_iterator_result_object(global_object, js_undefined(), true);
 

+ 1 - 1
Userland/Libraries/LibJS/Runtime/MapIteratorPrototype.h

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