aboutsummaryrefslogtreecommitdiff
path: root/src/ast.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-04-06 13:40:17 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-04-06 13:40:17 -0400
commit59845e610f2c90474f34079d27b5f1e07071ded4 (patch)
tree1066ab6c5c6e6620adda6ac4575703b9d4bf0a0a /src/ast.h
parent95633b1cc2da5294d9aec8c7eb9fca9a15c1a8bf (diff)
Deprecate `!!` print statement
Diffstat (limited to 'src/ast.h')
-rw-r--r--src/ast.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/ast.h b/src/ast.h
index 3beb6be2..b48582f2 100644
--- a/src/ast.h
+++ b/src/ast.h
@@ -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;