| 347 | Result AsyncReadableStream::asyncDestroyReadable() { return finishedDestroyingReadable(); } |
| 348 | |
| 349 | Result AsyncReadableStream::start() |
| 350 | { |
| 351 | SC_TRY_MSG(state == State::CanRead, "Can start only in CanRead state") |
| 352 | executeRead(); |
| 353 | return Result(true); |
| 354 | } |
| 355 | |
| 356 | void AsyncReadableStream::emitOnData() |
| 357 | { |
no test coverage detected