(
&mut self,
input: &mut cssparser::Parser<'i, 't>,
)
| 30 | type Error = (); |
| 31 | |
| 32 | fn parse_prelude<'t>( |
| 33 | &mut self, |
| 34 | input: &mut cssparser::Parser<'i, 't>, |
| 35 | ) -> Result<Self::Prelude, cssparser::ParseError<'i, Self::Error>> { |
| 36 | // Proceed with parsing until the end of the prelude. |
| 37 | Ok(exhaust(input)) |
| 38 | } |
| 39 | |
| 40 | fn parse_block<'t>( |
| 41 | &mut self, |