(&mut self, pin: &OutPin, snarl: &mut Snarl<GuiAudioNode>)
| 197 | } |
| 198 | |
| 199 | fn drop_outputs(&mut self, pin: &OutPin, snarl: &mut Snarl<GuiAudioNode>) { |
| 200 | for to in pin.remotes.iter() { |
| 201 | self.remove_edge(pin.id, *to, snarl); |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | fn disconnect(&mut self, from: &OutPin, to: &InPin, snarl: &mut Snarl<GuiAudioNode>) { |
| 206 | self.remove_edge(from.id, to.id, snarl); |
nothing calls this directly
no test coverage detected