(self, ctx: &Ctx<'js>)
| 367 | |
| 368 | impl<'js> IntoJs<'js> for ReadableStreamReaderClass<'js> { |
| 369 | fn into_js(self, ctx: &Ctx<'js>) -> Result<Value<'js>> { |
| 370 | match self { |
| 371 | Self::ReadableStreamDefaultReader(r) => r.into_js(ctx), |
| 372 | Self::ReadableStreamBYOBReader(r) => r.into_js(ctx), |
| 373 | } |
| 374 | } |
| 375 | } |
| 376 | |
| 377 | impl<'js> Trace<'js> for ReadableStreamReaderClass<'js> { |
no outgoing calls
no test coverage detected