Coverage Report

Created: 2026-01-22 08:11

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/wasm-tools/fuzz/src/text_parser.rs
Line
Count
Source
1
2.40k
pub fn run(s: &str) {
2
2.40k
    let buf = match wast::parser::ParseBuffer::new(s) {
3
2.40k
        Ok(b) => b,
4
0
        Err(_) => return,
5
    };
6
2.40k
    drop(wast::parser::parse::<wast::Wast>(&buf));
7
2.40k
}