- '(' => try self.addToken(allocator, .left_paren, null),
- ')' => try self.addToken(allocator, .right_paren, null),
- '{' => try self.addToken(allocator, .left_brace, null),
- '}' => try self.addToken(allocator, .right_brace, null),
- ',' => try self.addToken(allocator, .comma, null),
- '.' => try self.addToken(allocator, .dot, null),
- '-' => try self.addToken(allocator, .minus, null),
- '+' => try self.addToken(allocator, .plus, null),
- ';' => try self.addToken(allocator, .semicolon, null),
- '*' => try self.addToken(allocator, .star, null),
- '!' => try self.addToken(allocator, if (self.match('=')) .bang_equal else .bang, null),
- '=' => try self.addToken(allocator, if (self.match('=')) .equal_equal else .equal, null),
- '<' => try self.addToken(allocator, if (self.match('=')) .less_equal else .less, null),
- '>' => try self.addToken(allocator, if (self.match('=')) .greater_equal else .greater, null),
+ '(' => try self.addToken(.left_paren, null),
+ ')' => try self.addToken(.right_paren, null),
+ '{' => try self.addToken(.left_brace, null),
+ '}' => try self.addToken(.right_brace, null),
+ ',' => try self.addToken(.comma, null),
+ '.' => try self.addToken(.dot, null),
+ '-' => try self.addToken(.minus, null),
+ '+' => try self.addToken(.plus, null),
+ ';' => try self.addToken(.semicolon, null),
+ '*' => try self.addToken(.star, null),
+ '!' => try self.addToken(if (self.match('=')) .bang_equal else .bang, null),
+ '=' => try self.addToken(if (self.match('=')) .equal_equal else .equal, null),
+ '<' => try self.addToken(if (self.match('=')) .less_equal else .less, null),
+ '>' => try self.addToken(if (self.match('=')) .greater_equal else .greater, null),