diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-09-20 14:07:26 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-09-20 14:26:08 -0400 |
| commit | b9a8ddea2c0b5f170e461b9216eb14f2d86588eb (patch) | |
| tree | cb45901e3046b3d28823df9c85a719a38981804d /src/ast.h | |
| parent | e937e3056b934c6d426abc3db8de1c99433a434b (diff) | |
WIP on inline enums
Diffstat (limited to 'src/ast.h')
| -rw-r--r-- | src/ast.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -87,6 +87,7 @@ typedef enum { TableTypeAST, FunctionTypeAST, OptionalTypeAST, + EnumTypeAST, } type_ast_e; typedef struct tag_ast_s { @@ -128,6 +129,10 @@ struct type_ast_s { struct { type_ast_t *type; } OptionalTypeAST; + struct { + Text_t name; + tag_ast_t *tags; + } EnumTypeAST; } __data; }; |
