From 5c1a522f8908d0c7deb0b9663f3322a55260d45a Mon Sep 17 00:00:00 2001 From: Protryon Date: Mon, 7 Dec 2020 15:03:21 -0800 Subject: [PATCH] remove debug prints --- compiler/src/statement/assign/assignee.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/compiler/src/statement/assign/assignee.rs b/compiler/src/statement/assign/assignee.rs index d9c2279b6f..3a0fe2641c 100644 --- a/compiler/src/statement/assign/assignee.rs +++ b/compiler/src/statement/assign/assignee.rs @@ -32,9 +32,6 @@ impl> ConstrainedProgram { span: &Span, ) -> Result<&mut ConstrainedValue, StatementError> { // Check that assignee exists and is mutable - for key in self.identifiers.keys() { - println!("id {}", key); - } Ok(match self.get_mut(name) { Some(value) => match value { ConstrainedValue::Mutable(mutable_value) => mutable_value,