(&mut self, value: Box<ast::SetExpr>)
| 44 | self |
| 45 | } |
| 46 | pub fn body(&mut self, value: Box<ast::SetExpr>) -> &mut Self { |
| 47 | self.body = Some(value); |
| 48 | self |
| 49 | } |
| 50 | pub fn take_body(&mut self) -> Option<Box<ast::SetExpr>> { |
| 51 | self.body.take() |
| 52 | } |
no outgoing calls
no test coverage detected