(
&self,
cx: ConstructProcessorContext,
)
| 467 | } |
| 468 | |
| 469 | fn construct_processor( |
| 470 | &self, |
| 471 | cx: ConstructProcessorContext, |
| 472 | ) -> Result<Box<dyn AudioNodeProcessor>, NodeError> { |
| 473 | Ok(Box::new( |
| 474 | self.constructor |
| 475 | .construct_processor(&self.configuration, cx)?, |
| 476 | )) |
| 477 | } |
| 478 | |
| 479 | fn update(&mut self, cx: UpdateContext) { |
| 480 | self.constructor.update(&self.configuration, cx); |
nothing calls this directly
no outgoing calls
no test coverage detected