diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-02-12 00:41:49 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-02-12 00:41:49 -0500 |
| commit | 2c5401aaf731bba58d0db419594068ac24eda143 (patch) | |
| tree | a5eccd94ad7bd0b1a48f7005fe50356d0f261f6f /ast.c | |
| parent | 0f1913353408f46494741b05737d88156b81b7c4 (diff) | |
Deprecate Char type
Diffstat (limited to 'ast.c')
| -rw-r--r-- | ast.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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)) |
