diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-11-24 16:36:27 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-11-24 16:36:27 -0500 |
| commit | d4b10514fbe3afc7229efe74b015a664b52eba33 (patch) | |
| tree | 133cf2fd377ab8acbfa65908d04473ce0dd0ca49 /ast.h | |
| parent | 1e3fb8a2c0cca385d65c52679411b118b5fb4641 (diff) | |
Clean up some more null->none renames and fix the documentation. Also
change the literal syntax to `NONE:T` instead of `!T`
Diffstat (limited to 'ast.h')
| -rw-r--r-- | ast.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -122,7 +122,7 @@ struct type_ast_s { typedef enum { Unknown = 0, - Null, Bool, Var, + None, Bool, Var, Int, Num, TextLiteral, TextJoin, PrintStatement, Declare, Assign, @@ -155,7 +155,7 @@ struct ast_s { struct {} Unknown; struct { type_ast_t *type; - } Null; + } None; struct { bool b; } Bool; |
