aboutsummaryrefslogtreecommitdiff
path: root/src/ast.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-09-21 15:43:59 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-09-21 15:43:59 -0400
commit71f73d8b3ce63f9a3685bc1a1686ef4fab3294a6 (patch)
tree99fe1309fa4d24609867dcc62859caed909a76d9 /src/ast.h
parentf5612e38183dc20d18f207f8ab055574a4d93ad0 (diff)
Deprecate sets
Diffstat (limited to 'src/ast.h')
-rw-r--r--src/ast.h8
1 files changed, 0 insertions, 8 deletions
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,
@@ -121,9 +120,6 @@ struct type_ast_s {
ast_t *default_value;
} TableTypeAST;
struct {
- type_ast_t *item;
- } SetTypeAST;
- struct {
arg_ast_t *args;
type_ast_t *ret;
} FunctionTypeAST;
@@ -248,7 +244,6 @@ typedef enum {
Min,
Max,
List,
- Set,
Table,
TableEntry,
Comprehension,
@@ -343,9 +338,6 @@ struct ast_s {
ast_list_t *items;
} List;
struct {
- ast_list_t *items;
- } Set;
- struct {
ast_t *default_value;
ast_t *fallback;
ast_list_t *entries;