(&mut self)
| 131 | } |
| 132 | |
| 133 | fn begin_block(&mut self) -> std::fmt::Result { |
| 134 | self.indent.push_str(" "); |
| 135 | writeln!(self.out, " {{") |
| 136 | } |
| 137 | |
| 138 | fn end_block(&mut self, last_line: &str, scope: StableSet<BindingId>) -> std::fmt::Result { |
| 139 | if !last_line.is_empty() { |
no test coverage detected