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 237749b commit 8751223Copy full SHA for 8751223
crates/symbol-check/src/main.rs
@@ -117,10 +117,9 @@ fn verify_core_symbols(path: impl AsRef<Path>) {
117
let mut undefined = Vec::new();
118
119
for_each_symbol(path, |sym, member| {
120
- if cfg!(target_family = "wasm") {
121
- let info = SymInfo::new(&sym, member);
122
- println!("{info:?}");
123
- }
+ // REMOVE
+ let info = SymInfo::new(&sym, member);
+ println!("{info:?}");
124
125
// Find only symbols from `core`
126
if !sym.name().unwrap().contains("_ZN4core") {
0 commit comments