| 969 | } |
| 970 | |
| 971 | Result TypeChecker::OnTableFill(Type elem_type, const Limits& limits) { |
| 972 | return PopAndCheck3Types(limits.IndexType(), elem_type, limits.IndexType(), |
| 973 | "table.fill"); |
| 974 | } |
| 975 | |
| 976 | Result TypeChecker::OnRefAsNonNullExpr() { |
| 977 | Type actual; |
no test coverage detected