From b7bb86c392ba18e4c922b45f1a1178d765452d50 Mon Sep 17 00:00:00 2001 From: Michael Ficarra Date: Thu, 30 Mar 2023 13:03:58 -0600 Subject: [PATCH] Normative: remove IsCallable check on NextMethod, deferring errors to Call site --- spec.html | 1 - 1 file changed, 1 deletion(-) diff --git a/spec.html b/spec.html index 14eb46a..5f8cbd2 100644 --- a/spec.html +++ b/spec.html @@ -120,7 +120,6 @@

1. Let _nextMethod_ be ? Get(_obj_, `"next"`). - 1. If IsCallable(_nextMethod_) is *false*, throw a *TypeError* exception. 1. Let _iteratorRecord_ be Record { [[Iterator]]: _obj_, [[NextMethod]]: _nextMethod_, [[Done]]: *false* }. 1. Return _iteratorRecord_.