todel_codegen 0.3.3

Codegen crate for todel
Documentation
1
2
3
4
5
6
7
8
9
10
#![macro_use]

macro_rules! unwrap {
    ($err:expr) => {
        match $err {
            Ok(res) => res,
            Err(err) => return err.to_compile_error().into(),
        }
    };
}