diff --git a/schala-lang/language/src/reduced_ast.rs b/schala-lang/language/src/reduced_ast.rs index 0aa0031..5dc5551 100644 --- a/schala-lang/language/src/reduced_ast.rs +++ b/schala-lang/language/src/reduced_ast.rs @@ -444,7 +444,6 @@ impl Pattern { VarOrName(QualifiedName { components, id }) => { // if fqsn is Some, treat this as a symbol pattern. If it's None, treat it // as a variable. - println!("Calling VarOrName reduction with : {:?}", components); let fqsn = symbol_table.get_fqsn_from_id(&id); match fqsn.and_then(|fqsn| symbol_table.lookup_by_fqsn(&fqsn)) { Some(symbol) => handle_symbol(Some(symbol), &vec![], symbol_table),