We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
you can dump any AST by doing ocamlfind ppx_tools/dumpast your_file.ml
ocamlfind ppx_tools/dumpast your_file.ml
The text was updated successfully, but these errors were encountered:
or ocamlfind ppx_tools/dumpast -e "1 + 1" (from https://tarides.com/blog/2019-05-09-an-introduction-to-ocaml-ppx-ecosystem)
ocamlfind ppx_tools/dumpast -e "1 + 1"
Similarly, you can use the -t or -p options to respectively pretty print ASTs from type expressions or patterns.
Sorry, something went wrong.
(https://ocaml-ppx.github.io/ppxlib/ppxlib/manual.html#what-is-ppx)
started here: 7c6a95d
No branches or pull requests
you can dump any AST by doing
ocamlfind ppx_tools/dumpast your_file.ml
The text was updated successfully, but these errors were encountered: