diff --git a/src/parse/mod.rs b/src/parse/mod.rs index 4119782..fbfd008 100644 --- a/src/parse/mod.rs +++ b/src/parse/mod.rs @@ -1147,14 +1147,17 @@ impl<'a> Parser<'a> { Ok(stmts) } + #[allow(clippy::unused_self)] fn parse_extend(&mut self) -> SassResult<()> { todo!("@extend not yet implemented") } + #[allow(clippy::unused_self)] fn parse_supports(&mut self) -> SassResult { todo!("@supports not yet implemented") } + #[allow(clippy::unused_self)] fn parse_keyframes(&mut self) -> SassResult { todo!("@keyframes not yet implemented") }