Recently, it was announced in OCaml official github that Camlp4
is replaced by ppx rewriters and extension points
(https://github.com/ocaml/camlp4):
Camlp4 was part of the official OCaml distribution until its version 4.01.0. Since then it has been replaced by a simpler system which is easier to maintain and to learn: ppx rewriters and extension points.
I have been using Camlp4
to write parsers for DSL (separated syntax from OCaml).
So, I would like to ask if the ppx rewriters
tool can do the same thing?
Thank you for taking time to read my question!