(&self)
| 197 | |
| 198 | impl JitType { |
| 199 | fn to_cranelift(&self) -> types::Type { |
| 200 | match self { |
| 201 | Self::Int => types::I64, |
| 202 | Self::Float => types::F64, |
| 203 | Self::Bool => types::I8, |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | fn to_libffi(&self) -> libffi::middle::Type { |
| 208 | match self { |
no outgoing calls
no test coverage detected