diff --git a/src/selector.rs b/src/selector.rs index d6d662a..fe5b0cd 100644 --- a/src/selector.rs +++ b/src/selector.rs @@ -75,8 +75,6 @@ pub enum SelectorKind { /// Used to signify no selector (when there is no super_selector of a rule) None, Whitespace, - /// Intemediate value to simplify usage with identifier interpolation - Several(Vec), } impl IsWhitespace for SelectorKind { @@ -112,9 +110,6 @@ impl Display for SelectorKind { toks.iter().map(ToString::to_string).collect::() ), SelectorKind::Super | SelectorKind::None => write!(f, ""), - SelectorKind::Several(_) => { - panic!("SelectorKind::Several should not be rendered using Display") - } } } }