Validator: Match two defined types in the same module.
| 299 | public: |
| 300 | /// Validator: Match two defined types in the same module. |
| 301 | static bool matchType(Span<const SubType *const> TypeList, uint32_t ExpIdx, |
| 302 | uint32_t GotIdx) noexcept { |
| 303 | return matchType(TypeList, ExpIdx, TypeList, GotIdx); |
| 304 | } |
| 305 | |
| 306 | /// Validator: Match two composite types in the same module. |
| 307 | static bool matchType(Span<const SubType *const> TypeList, |
nothing calls this directly
no test coverage detected