fix missing string-conversions

This commit is contained in:
Neemek 2026-08-17 17:15:34 +02:00 committed by Neemek
parent ff11d7e0ed
commit 09ac16a42d
Signed by: neemek
GPG key ID: 84FFE4D7D40AB25E
4 changed files with 17 additions and 3 deletions

View file

@ -185,6 +185,8 @@ func (t TokenKind) String() string {
return "for"
case TokenIn:
return "in"
case TokenPercent:
return "percent"
}
panic("UNDEFINED TOKENTYPE STRING CONVERSION")