(start, pull, cancel)
| 1348 | } |
| 1349 | |
| 1350 | function InternalReadableByteStream(start, pull, cancel) { |
| 1351 | ObjectSetPrototypeOf(this, ReadableStream.prototype); |
| 1352 | markTransferMode(this, false, true); |
| 1353 | this[kType] = 'ReadableStream'; |
| 1354 | this[kState] = createReadableStreamState(); |
| 1355 | const controller = new ReadableByteStreamController(kSkipThrow); |
| 1356 | setupReadableByteStreamController( |
| 1357 | this, |
| 1358 | controller, |
| 1359 | start, |
| 1360 | pull, |
| 1361 | cancel, |
| 1362 | 0, |
| 1363 | undefined); |
| 1364 | } |
| 1365 | |
| 1366 | ObjectSetPrototypeOf(InternalReadableByteStream.prototype, ReadableStream.prototype); |
| 1367 | ObjectSetPrototypeOf(InternalReadableByteStream, ReadableStream); |
nothing calls this directly
no test coverage detected
searching dependent graphs…