diff options
Diffstat (limited to 'src/ast.h')
| -rw-r--r-- | src/ast.h | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -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; |
