Set the number of extra semicolons to add after each semicolon.
(mut self, count: u8)
| 18 | |
| 19 | /// Set the number of extra semicolons to add after each semicolon. |
| 20 | pub fn with_extra_semicolons(mut self, count: u8) -> Self { |
| 21 | self.extra_semicolons = count; |
| 22 | self |
| 23 | } |
| 24 | |
| 25 | /// Disable ident escaping for a milder expansion effect. |
| 26 | pub fn with_escape_idents(mut self, escape: bool) -> Self { |