(&mut self, node_id: NodeID)
| 143 | } |
| 144 | |
| 145 | pub fn remove_node(&mut self, node_id: NodeID) { |
| 146 | if let Err(e) = self.cx.remove_node(node_id) { |
| 147 | tracing::error!("{e}"); |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | pub fn add_node(&mut self, node_type: NodeType) -> GuiAudioNode { |
| 152 | let id = match node_type { |
no outgoing calls
no test coverage detected