From 71f73d8b3ce63f9a3685bc1a1686ef4fab3294a6 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 21 Sep 2025 15:43:59 -0400 Subject: Deprecate sets --- src/ast.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/ast.h') diff --git a/src/ast.h b/src/ast.h index 29141490..a545e68c 100644 --- a/src/ast.h +++ b/src/ast.h @@ -83,7 +83,6 @@ typedef enum { VarTypeAST, PointerTypeAST, ListTypeAST, - SetTypeAST, TableTypeAST, FunctionTypeAST, OptionalTypeAST, @@ -120,9 +119,6 @@ struct type_ast_s { type_ast_t *key, *value; ast_t *default_value; } TableTypeAST; - struct { - type_ast_t *item; - } SetTypeAST; struct { arg_ast_t *args; type_ast_t *ret; @@ -248,7 +244,6 @@ typedef enum { Min, Max, List, - Set, Table, TableEntry, Comprehension, @@ -342,9 +337,6 @@ struct ast_s { struct { ast_list_t *items; } List; - struct { - ast_list_t *items; - } Set; struct { ast_t *default_value; ast_t *fallback; -- cgit v1.2.3