Method
codegen
(&self, token: &NodeOwner, inputs: Vec<PortIdx>, outputs: Vec<PortIdx>, r: &mut Region, ir: &mut IR, ops: &mut Assembler)
Source from the content-addressed store, hash-verified
| 280 | } |
| 281 | |
| 282 | pub fn codegen(&self, token: &NodeOwner, inputs: Vec<PortIdx>, outputs: Vec<PortIdx>, r: &mut Region, ir: &mut IR, ops: &mut Assembler) { |
| 283 | println!("node codegen for {:?} @ {}", self.variant.ro(token), self.time); |
| 284 | self.variant.ro(token).codegen(token, self.inputs.clone(), self.outputs.clone(), r, ir, ops) |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | impl NodeBehavior for NodeVariant::Constant { |
Callers
nothing calls this directly
Tested by
no test coverage detected