Skip to content

Commit

Permalink
remove dbg! calls
Browse files Browse the repository at this point in the history
  • Loading branch information
keithamus committed Aug 4, 2023
1 parent e514846 commit 01b1962
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions crates/hdx_parser/src/css/component_values.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ impl<'a> Parser<'a> {
self.advance();
}
c => {
dbg!(&self.cur(), stop_token);
if c == stop_token {
return Ok(values);
}
Expand All @@ -46,9 +45,7 @@ impl<'a> Parse<'a> for ComponentValue<'a> {
Ok(Self::Function(Function::parse(parser)?).spanned(span.up_to(&parser.cur().span)))
}
_ => {
dbg!(&parser.cur());
let token = parser.cur().clone();
dbg!(&parser.cur());
parser.advance();
Ok(Self::Token(token).spanned(span))
}
Expand Down
1 change: 0 additions & 1 deletion crates/hdx_parser/src/cursor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,6 @@ impl<'a> Parser<'a> {
self.prev_span = self.token.span;
loop {
let token = self.lexer.next_token();
dbg!("next token is ", &token);
if !token.is_trivia() {
self.token = token;
return;
Expand Down

0 comments on commit 01b1962

Please sign in to comment.