Remove TokenMode

This commit is contained in:
2026-07-13 14:36:02 +02:00
parent 4f3226b0b7
commit f875b2917a
2 changed files with 2 additions and 18 deletions
-9
View File
@@ -35,15 +35,6 @@ print_token :: proc(token: Token, depth: int) {
value_str = v
case int:
value_str = fmt.aprintf("%d", v, allocator = context.temp_allocator)
case TokenMode:
switch v {
case TokenMode.Start:
value_str = "Start"
case TokenMode.End:
value_str = "End"
case TokenMode.Modeless:
value_str = "Modeless"
}
}
if value_str != "" {