(&self)
| 169 | |
| 170 | impl Type { |
| 171 | fn store(&self) -> &'static str { |
| 172 | match self { |
| 173 | Self::S8 | Self::U8 => "store8", |
| 174 | Self::S16 | Self::U16 => "store16", |
| 175 | Self::I32 | Self::F32 | Self::I64 | Self::F64 => "store", |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | fn primitive(&self) -> &'static str { |
| 180 | match self { |
no outgoing calls