(reason)
| 1819 | } |
| 1820 | |
| 1821 | function cancel2Algorithm(reason) { |
| 1822 | canceled2 = true; |
| 1823 | reason2 = reason; |
| 1824 | if (canceled1) { |
| 1825 | const compositeReason = [reason1, reason2]; |
| 1826 | cancelPromise.resolve(readableStreamCancel(stream, compositeReason)); |
| 1827 | } |
| 1828 | return cancelPromise.promise; |
| 1829 | } |
| 1830 | |
| 1831 | branch1 = |
| 1832 | createReadableStream(nonOpStart, pullAlgorithm, cancel1Algorithm); |
nothing calls this directly
no test coverage detected
searching dependent graphs…