remove commented dbg statements
This commit is contained in:
parent
5bbf10b05f
commit
2885eec853
@ -12,7 +12,6 @@ pub(crate) fn eat_stmts<I: Iterator<Item = Token>>(
|
||||
) -> SassResult<Vec<Stmt>> {
|
||||
let mut stmts = Vec::new();
|
||||
while let Some(expr) = eat_expr(toks, scope, super_selector)? {
|
||||
// dbg!(&expr);
|
||||
match expr {
|
||||
Expr::AtRule(a) => stmts.push(Stmt::AtRule(a)),
|
||||
Expr::Style(s) => stmts.push(Stmt::Style(s)),
|
||||
|
@ -518,7 +518,6 @@ pub(crate) fn parse_quoted_string<I: Iterator<Item = Token>>(
|
||||
let mut is_escaped = false;
|
||||
let mut found_interpolation = false;
|
||||
while let Some(tok) = toks.next() {
|
||||
// dbg!(&tok);
|
||||
match tok.kind {
|
||||
'"' if !is_escaped && q == '"' => break,
|
||||
'"' if is_escaped => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user