| 75 | bool is32() const noexcept { return static_cast<uint8_t>(Type) < 0x04U; } |
| 76 | bool is64() const noexcept { return !is32(); } |
| 77 | AddressType getAddrType() const noexcept { |
| 78 | return is32() ? AddressType::I32 : AddressType::I64; |
| 79 | } |
| 80 | void setType(LimitType TargetType) noexcept { Type = TargetType; } |
| 81 | |
| 82 | /// Getter and setter for min value. |
no outgoing calls
no test coverage detected