Deprecate SetType, as it can be replaced by TableType

This commit is contained in:
Vern Paxson 2025-09-15 13:42:40 -07:00 committed by Tim Wojtulewicz
parent b25a844210
commit b442c25389
13 changed files with 33 additions and 84 deletions

View file

@ -1211,7 +1211,7 @@ simple_type:
| TOK_SET '[' type_list ']'
{
set_location(@1, @4);
$$ = new SetType({AdoptRef{}, $3}, nullptr);
$$ = new TableType({AdoptRef{}, $3}, nullptr);
}
| TOK_RECORD '{'