Pushes an empty line.
(&mut self)
| 152 | |
| 153 | /// Pushes an empty line. |
| 154 | pub fn empty_line(&mut self) { |
| 155 | self.lines.push("\n".to_string()); |
| 156 | } |
| 157 | |
| 158 | /// Add one or more lines after stripping common indentation. |
| 159 | pub fn multi_line(&mut self, s: &str) { |
no test coverage detected