Closed Drup closed 6 years ago
Merged. Do we need a bugfix release right away?
If you don't mind, that would be nice yes. It makes it impossible to have regexes with more than 2 groups at toplevel, which is ... slightly unfortunate.
A new release on it's way, ocaml/opam-repository#12566.
Routes like this one:
were broken, because the ppx would generate a pattern
(host, hump, b)
, instead of the correct(host, (hump, b)
. Everything to generate nested tuples was already there, it was just not used in enough places. :p