(&mut self, cond: bool, s: &str)
| 226 | } |
| 227 | |
| 228 | fn p_if(&mut self, cond: bool, s: &str) { |
| 229 | if cond { |
| 230 | self.p(s); |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | fn p_delim(&mut self, first: &mut bool, s: &str) { |
| 235 | self.p_if(!std::mem::take(first), s); |
no test coverage detected