From 50233f5fe886669289c1aa17fd7f9c81b64e809b Mon Sep 17 00:00:00 2001 From: gluaxspeed Date: Wed, 25 Aug 2021 11:00:24 -0700 Subject: [PATCH] whoops forgot to remove the dbg statement --- ast/src/reducer/canonicalization.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ast/src/reducer/canonicalization.rs b/ast/src/reducer/canonicalization.rs index da6a881ff9..fa6f2e1a33 100644 --- a/ast/src/reducer/canonicalization.rs +++ b/ast/src/reducer/canonicalization.rs @@ -304,7 +304,7 @@ impl Canonicalizer { arguments: call .arguments .iter() - .map(|arg| self.canonicalize_expression(dbg!(arg))) + .map(|arg| self.canonicalize_expression(arg)) .collect(), span: call.span.clone(), });