Coverage Report

Created: 2025-10-12 07:32

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.34k
pub fn run(s: &str) {
2
2.34k
    let buf = match wast::parser::ParseBuffer::new(s) {
3
2.34k
        Ok(b) => b,
4
0
        Err(_) => return,
5
    };
6
2.34k
    drop(wast::parser::parse::<wast::Wast>(&buf));
7
2.34k
}