From d595dc5204afc905d123993d9db80e0013c5a3e3 Mon Sep 17 00:00:00 2001 From: Aditi Date: Wed, 2 Feb 2022 17:32:41 +0530 Subject: [PATCH 1/2] Add IfAbruptCloseAsyncIterator --- spec.html | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/spec.html b/spec.html index c0d4008..7dd214a 100644 --- a/spec.html +++ b/spec.html @@ -19,6 +19,33 @@

Introduction

explainer for the proposal's background, motivation, and usage examples.

+ +

Control Abstraction Objects

+ + +

Iteration

+ + +

Iterator Abstract Operations

+ + +

IfAbruptCloseAsyncIterator ( _value_, _iteratorRecord_ )

+

IfAbruptCloseAsyncIterator is a shorthand for a sequence of algorithm steps that use an Iterator Record. An algorithm step of the form:

+ + 1. IfAbruptCloseAsyncIterator(_value_, _iteratorRecord_). + +

means the same thing as:

+ + 1. If _value_ is an abrupt completion, then + 1. Perform ? AsyncIteratorClose(_iteratorRecord_, _value_). + 1. Return _value_. + 1. Else if _value_ is a Completion Record, set _value_ to _value_.[[Value]]. + +
+
+
+
+

Indexed Collections

From 9bdd8285c380c83f825d33e7b22291259eb79557 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=C2=A0S=2E=C2=A0Choi?= Date: Mon, 11 Jul 2022 15:00:57 -0400 Subject: [PATCH 2/2] spec: Fix extra trailing tag --- spec.html | 2 -- 1 file changed, 2 deletions(-) diff --git a/spec.html b/spec.html index 0f72cee..d3d98b2 100644 --- a/spec.html +++ b/spec.html @@ -87,8 +87,6 @@

- -