(p: &mut Parser<'a, I>)
| 19 | |
| 20 | impl<'a> Parse<'a> for Sheet<'a> { |
| 21 | fn parse<I>(p: &mut Parser<'a, I>) -> ParserResult<Self> |
| 22 | where |
| 23 | I: Iterator<Item = Cursor> + Clone, |
| 24 | { |
| 25 | let (rules, _) = Self::parse_stylesheet(p)?; |
| 26 | Ok(Self { rules }) |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | impl<'a> StyleSheet<'a, ()> for Sheet<'a> { |
no outgoing calls
no test coverage detected