remove or pattern todos

clippy now has a lint for them
This commit is contained in:
Connor Skees 2020-07-04 11:33:31 -04:00
parent a823ae7811
commit c52a0c7dd9
2 changed files with 0 additions and 2 deletions

View File

@ -287,7 +287,6 @@ impl<'a> Parser<'a> {
if first.kind.is_ascii_hexdigit() {
let mut value = 0;
for _ in 0..6 {
// todo: or patterns
let next = match self.toks.peek() {
Some(c) => c,
None => break,

View File

@ -131,7 +131,6 @@ impl<'a, 'b> SelectorParser<'a, 'b> {
fn parse_complex_selector(&mut self, line_break: bool) -> SassResult<ComplexSelector> {
let mut components = Vec::new();
// todo: or patterns
loop {
self.parser.whitespace();