`public` might have a token by itself, even though you can have `pub` occurring in other contexts, too.
Seeing all the C languages and JavaScript at the bottom like this makes me wonder if it's not just that Curly brackets take a lot of tokens.
for (int index = 0; index < size; ++index)
instead of for index in 0...size
eats up a lot of tokens, especially in C where you also need this construct for iterating over arrays.