(&mut self, s: S, d: D, this_id: NodeID, value: &Expr)
| 69 | } |
| 70 | |
| 71 | pub fn on_timer_gt(&mut self, s: S, d: D, this_id: NodeID, value: &Expr) -> io::Result<()> { |
| 72 | self.begin_inputs()?; |
| 73 | self.input(s, d, "VALUE", value, this_id)?; |
| 74 | self.end_obj()?; // inputs |
| 75 | self.single_field("WHENGREATERTHANMENU", "TIMER")?; |
| 76 | self.end_obj()?; // node |
| 77 | self.expr(s, d, value, this_id, this_id) |
| 78 | } |
| 79 | |
| 80 | pub fn on_clone(&mut self, _s: S, _d: D, _this_id: NodeID) -> io::Result<()> { |
| 81 | self.end_obj() // node |
no test coverage detected