| 201 | } |
| 202 | |
| 203 | bool isPackType() const noexcept { |
| 204 | switch (Inner.Data.Code) { |
| 205 | case TypeCode::I8: |
| 206 | case TypeCode::I16: |
| 207 | return true; |
| 208 | default: |
| 209 | return false; |
| 210 | } |
| 211 | } |
| 212 | |
| 213 | bool isFuncRefType() const noexcept { |
| 214 | return (Inner.Data.HTCode == TypeCode::FuncRef) || |
no outgoing calls
no test coverage detected