(p: &Parser<'a, I>, c: Cursor)
| 15 | |
| 16 | #[inline(always)] |
| 17 | fn peek<I>(p: &Parser<'a, I>, c: Cursor) -> bool |
| 18 | where |
| 19 | I: Iterator<Item = Cursor> + Clone, |
| 20 | { |
| 21 | <T![Dimension]>::peek(p, c) |
| 22 | && p.to_source_cursor(c).source()[c.token().numeric_len() as usize..].starts_with("--") |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | impl<'a> Parse<'a> for CustomDimension { |
nothing calls this directly
no test coverage detected