[fine] Remove extra printf
This commit is contained in:
parent
85ffc0c7dd
commit
13bb04238f
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue