Remove extraneous debug print

This commit is contained in:
greg 2019-10-21 19:19:48 -07:00
parent 8656992945
commit 7ac63160c5
1 changed files with 0 additions and 1 deletions

View File

@ -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),