(&mut self, name: &str, this_id: Option<NodeID>)
| 353 | } |
| 354 | |
| 355 | pub fn substack(&mut self, name: &str, this_id: Option<NodeID>) -> io::Result<()> { |
| 356 | let Some(this_id) = this_id else { |
| 357 | return Ok(()); |
| 358 | }; |
| 359 | write_comma_io(&mut self.zip, &mut self.inputs_comma)?; |
| 360 | write!(self, r#""{name}":[2,{this_id}]"#) |
| 361 | } |
| 362 | |
| 363 | pub fn project( |
| 364 | &mut self, |
no test coverage detected