As discussed here: https://github.com/ocaml-ppx/ppx/pull/33#discussion_r363812808, we want to support the following: ```ocaml match%view x with | {A.a; b} -> f a b ``` and translate it to calls to `A.a'match` and `A.b'match`
As discussed here: #33 (comment), we want to support the following:
and translate it to calls to
A.a'matchandA.b'match