aboutsummaryrefslogtreecommitdiff
path: root/src/ast.h
diff options
context:
space:
mode:
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;