aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/token.c
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-01-14 23:10:40 +0900
committernsfisis <nsfisis@gmail.com>2026-01-17 00:27:28 +0900
commit82df1b08c42d40c79b0dbd1634e18786cad860da (patch)
treea2d2d9ab6aa9a03aa4e49b750fc597c0b3659c1c /src/token.c
parentfda0d40f4d353ce91592b9a1526cb463a279b6f8 (diff)
downloadducc-82df1b08c42d40c79b0dbd1634e18786cad860da.tar.gz
ducc-82df1b08c42d40c79b0dbd1634e18786cad860da.tar.zst
ducc-82df1b08c42d40c79b0dbd1634e18786cad860da.zip
feat: support empty arguments of ## operator
Diffstat (limited to 'src/token.c')
-rw-r--r--src/token.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/token.c b/src/token.c
index 7e54729..ebb803e 100644
--- a/src/token.c
+++ b/src/token.c
@@ -13,6 +13,8 @@ const char* token_kind_stringify(TokenKind k) {
return "<whitespace>";
else if (k == TokenKind_removed)
return "<removed>";
+ else if (k == TokenKind_placemarker)
+ return "<placemarker>";
else if (k == TokenKind_newline)
return "<new-line>";
else if (k == TokenKind_other)