(&mut self, input: usize, output: usize, r: &mut Region)
| 250 | } |
| 251 | |
| 252 | pub fn connect_operands(&mut self, input: usize, output: usize, r: &mut Region) -> PortEdge { |
| 253 | let input = self.inputs[input]; |
| 254 | let output = self.outputs[output]; |
| 255 | r.connect_ports(input, output) |
| 256 | } |
| 257 | |
| 258 | pub fn create_ports(&mut self, token: &mut NodeOwner, r: &mut Region) { |
| 259 | println!("create_ports called"); |
nothing calls this directly
no test coverage detected