Skip to content

Commit 8751223

Browse files
committed
print all
1 parent 237749b commit 8751223

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

crates/symbol-check/src/main.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,9 @@ fn verify_core_symbols(path: impl AsRef<Path>) {
117117
let mut undefined = Vec::new();
118118

119119
for_each_symbol(path, |sym, member| {
120-
if cfg!(target_family = "wasm") {
121-
let info = SymInfo::new(&sym, member);
122-
println!("{info:?}");
123-
}
120+
// REMOVE
121+
let info = SymInfo::new(&sym, member);
122+
println!("{info:?}");
124123

125124
// Find only symbols from `core`
126125
if !sym.name().unwrap().contains("_ZN4core") {

0 commit comments

Comments
 (0)