(offset: i64)
| 390 | for pass_bss in [false, true] { |
| 391 | for sec in &module.sections { |
| 392 | let Some(kind) = &sec.kind else { |
| 393 | continue; |
| 394 | }; |
| 395 | if matches!(kind, SectionKind::Bss) == pass_bss { |
| 396 | out.push(sec); |
| 397 | } |
| 398 | } |
| 399 | } |
no outgoing calls
no test coverage detected