We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60a6206 commit bceea49Copy full SHA for bceea49
crates/symbol-check/src/main.rs
@@ -131,7 +131,9 @@ fn verify_no_duplicates(path: impl AsRef<Path>) {
131
132
for_each_symbol(path, |sym, member| {
133
// Only check defined globals, exclude wasm file symbols
134
- if !sym.is_global() || sym.is_undefined() || sym.kind() == SymbolKind::File {
+ if !sym.is_global() || sym.is_undefined()
135
+ // || sym.kind() == SymbolKind::File
136
+ {
137
return;
138
}
139
0 commit comments