(data: &str)
| 193 | |
| 194 | impl SvgLexer<'_> { |
| 195 | fn new(data: &str) -> SvgLexer<'_> { |
| 196 | SvgLexer { |
| 197 | data, |
| 198 | ix: 0, |
| 199 | last_pt: Point::ORIGIN, |
| 200 | } |
| 201 | } |
| 202 | |
| 203 | fn skip_ws(&mut self) { |
| 204 | while let Some(&c) = self.data.as_bytes().get(self.ix) { |
nothing calls this directly
no outgoing calls
no test coverage detected