aboutsummaryrefslogtreecommitdiff
path: root/src/formatter/types.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/formatter/types.c')
-rw-r--r--src/formatter/types.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/formatter/types.c b/src/formatter/types.c
index e52faf70..0cff38f0 100644
--- a/src/formatter/types.c
+++ b/src/formatter/types.c
@@ -17,9 +17,6 @@ Text_t format_type(type_ast_t *type) {
case ListTypeAST: {
return Texts("[", format_type(Match(type, ListTypeAST)->item), "]");
}
- case SetTypeAST: {
- return Texts("|", format_type(Match(type, SetTypeAST)->item), "|");
- }
case TableTypeAST: {
DeclareMatch(table, type, TableTypeAST);
Text_t code = Texts("{", format_type(table->key), "=", format_type(table->value));