(
desc: &'static str,
func: fn(&mut X64Assembler, I)
)
| 31 | } |
| 32 | impl <I> EmitterDesc<I> { |
| 33 | pub const fn new( |
| 34 | desc: &'static str, |
| 35 | func: fn(&mut X64Assembler, I) |
| 36 | ) -> Self |
| 37 | { |
| 38 | Self { desc, func } |
| 39 | } |
| 40 | |
| 41 | pub fn desc(&self) -> &'static str { |
| 42 | self.desc |
nothing calls this directly
no outgoing calls
no test coverage detected