diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-04-06 13:40:17 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-04-06 13:40:17 -0400 |
| commit | 59845e610f2c90474f34079d27b5f1e07071ded4 (patch) | |
| tree | 1066ab6c5c6e6620adda6ac4575703b9d4bf0a0a /src/ast.h | |
| parent | 95633b1cc2da5294d9aec8c7eb9fca9a15c1a8bf (diff) | |
Deprecate `!!` print statement
Diffstat (limited to 'src/ast.h')
| -rw-r--r-- | src/ast.h | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -123,7 +123,7 @@ typedef enum { Unknown = 0, None, Bool, Var, Int, Num, - TextLiteral, TextJoin, PrintStatement, + TextLiteral, TextJoin, Path, Declare, Assign, Power, Multiply, Divide, Mod, Mod1, Plus, Minus, Concat, LeftShift, UnsignedLeftShift, @@ -183,9 +183,6 @@ struct ast_s { const char *path; } Path; struct { - ast_list_t *to_print; - } PrintStatement; - struct { ast_t *var; type_ast_t *type; ast_t *value; |
