| 217 | } |
| 218 | |
| 219 | bool isExternRefType() const noexcept { |
| 220 | return (Inner.Data.HTCode == TypeCode::ExternRef) || |
| 221 | (Inner.Data.HTCode == TypeCode::NullExternRef) || |
| 222 | Inner.Data.Externalize; |
| 223 | } |
| 224 | |
| 225 | bool isNullableRefType() const noexcept { |
| 226 | return (Inner.Data.Code == TypeCode::RefNull); |
no outgoing calls