(
&mut self,
prelude: Self::Prelude,
_: &ParserState,
input: &mut cssparser::Parser<'i, 't>,
)
| 38 | } |
| 39 | |
| 40 | fn parse_block<'t>( |
| 41 | &mut self, |
| 42 | prelude: Self::Prelude, |
| 43 | _: &ParserState, |
| 44 | input: &mut cssparser::Parser<'i, 't>, |
| 45 | ) -> Result<Self::QualifiedRule, cssparser::ParseError<'i, Self::Error>> { |
| 46 | Ok((prelude, parse_declarations_into(input, self.0))) |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | /// Parse a declaration within {} block: `color: blue` |
nothing calls this directly
no test coverage detected