(reason)
| 1062 | return cancelPromise.promise; |
| 1063 | } |
| 1064 | function cancel2Algorithm(reason) { |
| 1065 | canceled2 = true; |
| 1066 | reason2 = reason; |
| 1067 | if (canceled1 === true) { |
| 1068 | const compositeReason = [reason1, reason2]; |
| 1069 | const cancelResult = ReadableStreamCancel(stream, compositeReason); |
| 1070 | resolvePromise(cancelPromise, cancelResult); |
| 1071 | } |
| 1072 | return cancelPromise.promise; |
| 1073 | } |
| 1074 | function startAlgorithm() { |
| 1075 | } |
| 1076 | branch1 = CreateReadableStream(startAlgorithm, pullAlgorithm, cancel1Algorithm); |
nothing calls this directly
no test coverage detected