* AsyncIterableIterator throw implementation
(e: any)
| 116 | * AsyncIterableIterator throw implementation |
| 117 | */ |
| 118 | async throw(e: any): Promise<IteratorResult<T>> { |
| 119 | this.setError(e instanceof Error ? e : new Error(String(e))) |
| 120 | throw this.error |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * Make this iterable |