[fine] Remove extra printf

This commit is contained in:
John Doty 2024-03-25 09:24:52 -07:00
parent 85ffc0c7dd
commit 13bb04238f

View file

@ -2163,7 +2163,7 @@ impl Semantics {
let other_env = other.environment_of(root); let other_env = other.environment_of(root);
for (name, decl) in other_env.declarations.iter() { for (name, decl) in other_env.declarations.iter() {
if decl.is_exported() { if decl.is_exported() {
eprintln!("******* {} is exported!", name); // eprintln!("******* {} is exported!", name);
result.declarations.insert( result.declarations.insert(
name.clone(), name.clone(),
Declaration::ImportedDeclaration { Declaration::ImportedDeclaration {
@ -2173,7 +2173,7 @@ impl Semantics {
}, },
); );
} else { } else {
eprintln!("******* {} is NOT exported!", name); // eprintln!("******* {} is NOT exported!", name);
} }
} }
EnvironmentRef::new(result) EnvironmentRef::new(result)