remove commented dbg statements

This commit is contained in:
ConnorSkees 2020-03-29 22:21:42 -04:00
parent 5bbf10b05f
commit 2885eec853
2 changed files with 0 additions and 2 deletions

View File

@ -12,7 +12,6 @@ pub(crate) fn eat_stmts<I: Iterator<Item = Token>>(
) -> SassResult<Vec<Stmt>> { ) -> SassResult<Vec<Stmt>> {
let mut stmts = Vec::new(); let mut stmts = Vec::new();
while let Some(expr) = eat_expr(toks, scope, super_selector)? { while let Some(expr) = eat_expr(toks, scope, super_selector)? {
// dbg!(&expr);
match expr { match expr {
Expr::AtRule(a) => stmts.push(Stmt::AtRule(a)), Expr::AtRule(a) => stmts.push(Stmt::AtRule(a)),
Expr::Style(s) => stmts.push(Stmt::Style(s)), Expr::Style(s) => stmts.push(Stmt::Style(s)),

View File

@ -518,7 +518,6 @@ pub(crate) fn parse_quoted_string<I: Iterator<Item = Token>>(
let mut is_escaped = false; let mut is_escaped = false;
let mut found_interpolation = false; let mut found_interpolation = false;
while let Some(tok) = toks.next() { while let Some(tok) = toks.next() {
// dbg!(&tok);
match tok.kind { match tok.kind {
'"' if !is_escaped && q == '"' => break, '"' if !is_escaped && q == '"' => break,
'"' if is_escaped => { '"' if is_escaped => {