(&mut self, from: &OutPin, to: &InPin, snarl: &mut Snarl<GuiAudioNode>)
| 203 | } |
| 204 | |
| 205 | fn disconnect(&mut self, from: &OutPin, to: &InPin, snarl: &mut Snarl<GuiAudioNode>) { |
| 206 | self.remove_edge(from.id, to.id, snarl); |
| 207 | } |
| 208 | |
| 209 | fn connect(&mut self, from: &OutPin, to: &InPin, snarl: &mut Snarl<GuiAudioNode>) { |
| 210 | let src_node = snarl.get_node(from.id.node).unwrap().id; |
no test coverage detected