| ... | ... | @@ -223,7 +223,7 @@ const Parser = struct { |
| 223 | 223 | if (temp.len == 0 and self.nextIs(.word)) { |
| 224 | 224 | const next_word = self.eat(.word); |
| 225 | 225 | if (extras.matchesAll(u8, next_word, std.ascii.isDigit)) { |
| 226 | | ret = ret ++ &[_]Arg{.{ .int = std.fmt.parseUnsigned(u64, next_word, 10) catch unreachable }}; |
| 226 | ret = ret ++ &[_]Arg{.{ .int = extras.parseDigits(u64, next_word, 10) catch unreachable }}; |
| 227 | 227 | continue; |
| 228 | 228 | } |
| 229 | 229 | temp = temp ++ &[_]string{next_word}; |