| 723 | /// Getter for reference type. |
| 724 | const ValType &getRefType() const noexcept { return Type; } |
| 725 | void setRefType(const ValType &RType) noexcept { |
| 726 | assuming(RType.isRefType()); |
| 727 | Type = RType; |
| 728 | } |
| 729 | |
| 730 | /// Getter for limit. |
| 731 | const Limit &getLimit() const noexcept { return Lim; } |