| 191 | } |
| 192 | |
| 193 | bool isRefType() const noexcept { |
| 194 | switch (Inner.Data.Code) { |
| 195 | case TypeCode::Ref: |
| 196 | case TypeCode::RefNull: |
| 197 | return true; |
| 198 | default: |
| 199 | return false; |
| 200 | } |
| 201 | } |
| 202 | |
| 203 | bool isPackType() const noexcept { |
| 204 | switch (Inner.Data.Code) { |
no outgoing calls