(&mut self, stmts: &[Stmt])
| 161 | } |
| 162 | |
| 163 | fn body(&mut self, stmts: &[Stmt]) { |
| 164 | self.indent_depth = self.indent_depth.saturating_add(1); |
| 165 | for stmt in stmts { |
| 166 | self.unparse_stmt(stmt); |
| 167 | } |
| 168 | self.indent_depth = self.indent_depth.saturating_sub(1); |
| 169 | } |
| 170 | |
| 171 | fn p(&mut self, s: &str) { |
| 172 | if self.num_newlines > 0 { |
no test coverage detected