(&mut self, s: &Identifier)
| 179 | } |
| 180 | |
| 181 | fn p_id(&mut self, s: &Identifier) { |
| 182 | self.p(s.as_str()); |
| 183 | } |
| 184 | |
| 185 | fn p_bytes_repr(&mut self, s: &[u8], flags: BytesLiteralFlags) { |
| 186 | // raw bytes are interpreted without escapes and should all be ascii (it's a python syntax |
no test coverage detected