()
| 2332 | const controller = Object.create(WritableStreamDefaultController.prototype); |
| 2333 | let startAlgorithm = () => undefined; |
| 2334 | let writeAlgorithm = () => promiseResolvedWith(undefined); |
| 2335 | let closeAlgorithm = () => promiseResolvedWith(undefined); |
| 2336 | let abortAlgorithm = () => promiseResolvedWith(undefined); |
| 2337 | if (underlyingSink.start !== undefined) { |
nothing calls this directly
no test coverage detected