pub fn nextNoWS(self: *Tokenizer) Token
pub fn nextNoWS(self: *Tokenizer) Token { var tok = self.next(); while (tok.id == .whitespace or tok.id == .comment) tok = self.next(); return tok; }