aboutsummaryrefslogtreecommitdiff
path: root/ast.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-02-12 00:41:49 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-02-12 00:41:49 -0500
commit2c5401aaf731bba58d0db419594068ac24eda143 (patch)
treea5eccd94ad7bd0b1a48f7005fe50356d0f261f6f /ast.c
parent0f1913353408f46494741b05737d88156b81b7c4 (diff)
Deprecate Char type
Diffstat (limited to 'ast.c')
-rw-r--r--ast.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ast.c b/ast.c
index 6cb1fd67..b5bb64bc 100644
--- a/ast.c
+++ b/ast.c
@@ -89,7 +89,6 @@ CORD ast_to_cord(ast_t *ast)
T(Var, "(\x1b[36;1m%s\x1b[m)", data.name)
T(Int, "(\x1b[35m%ld\x1b[m, precision=\x1b[35m%ld\x1b[m)", data.i, data.precision)
T(Num, "(\x1b[35m%ld\x1b[m, precision=\x1b[35m%ld\x1b[m)", data.n, data.precision)
- T(Char, "(\x1b[35m'%c'\x1b[m)", data.c)
T(StringLiteral, "\x1b[35m\"%r\"\x1b[m", data.cord)
T(StringJoin, "(%r)", ast_list_to_cord(data.children))
T(Declare, "(var=%s, value=%r)", ast_to_cord(data.var), ast_to_cord(data.value))