diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-02-10 15:23:06 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-02-10 15:23:06 -0500 |
| commit | 4e545c67985299dabc2a061160e126068d43541e (patch) | |
| tree | f3b57ff6abd221894f01a4b6b85c068197b83254 /ast.h | |
| parent | 930c09f46d1e249fc889e8f1179046a48c1eaf32 (diff) | |
Better string parsing.
Diffstat (limited to 'ast.h')
| -rw-r--r-- | ast.h | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -92,7 +92,7 @@ typedef enum { Unknown = 0, Nil, Bool, Var, Int, Num, Char, - StringLiteral, StringJoin, Interp, + StringLiteral, StringJoin, Declare, Assign, BinaryOp, UnaryOp, UpdateAssign, Min, Max, @@ -146,10 +146,6 @@ struct ast_s { ast_list_t *children; } StringJoin; struct { - ast_t *value; - bool labelled:1, colorize:1, quote_string:1; - } Interp; - struct { ast_t *var; ast_t *value; } Declare; |
