Coverage Report

Created: 2025-03-22 00:52

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/build/source/src/execution/assert_validated.rs
Line
Count
Source
1
//! Helpers for assertions due to prior validation of a WASM program.
2
3
use core::fmt::Debug;
4
5
pub(crate) trait UnwrapValidatedExt<T> {
6
    fn unwrap_validated(self) -> T;
7
}
8
9
impl<T> UnwrapValidatedExt<T> for Option<T> {
10
    /// Indicate that we can assume this Option to be Some(_) due to prior validation
11
43.7M
    fn unwrap_validated(self) -> T {
12
43.7M
        self.expect("Validation guarantees this to be `Some(_)`, but it is `None`")
13
43.7M
    }
14
}
15
16
impl<T, E: Debug> UnwrapValidatedExt<T> for Result<T, E> {
17
    /// Indicate that we can assume this Result to be Ok(_) due to prior validation
18
30.0M
    fn unwrap_validated(self) -> T {
19
30.0M
        self.unwrap_or_else(|e| {
20
0
            panic!("Validation guarantees this to be `Ok(_)`, but it is `Err({e:?})`");
21
30.0M
        })
22
30.0M
    }
23
}
24
25
#[macro_export]
26
macro_rules! unreachable_validated {
27
    () => {
28
        unreachable!("because of prior validation")
29
    };
30
}