diff options
Diffstat (limited to 'bootstrap/dump.c')
| -rw-r--r-- | bootstrap/dump.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bootstrap/dump.c b/bootstrap/dump.c index 157b12f..3bd915f 100644 --- a/bootstrap/dump.c +++ b/bootstrap/dump.c @@ -159,6 +159,8 @@ tok2str(struct tok tok) { return "<type parameter>"; } else if (tok.t == TKexpr) { return "<const parameter>"; + } else if (tok.t == TKstrify) { + return "#strify"; } else { snprintf(buf, sizeof buf - 1, "`%c'", tok.t); } |