Created
September 9, 2019 06:46
-
-
Save Khady/e7b197e60a5065651815bc7b19c07a24 to your computer and use it in GitHub Desktop.
Use merlin to print an ocaml file after being processed by a ppx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
# A .merlin must be present nearby the file. | |
# With dune it can be generated by calling `dune build @check`. | |
FILE="$1" | |
ocamlmerlin single dump -what ppxed-source -filename "$FILE" < "$FILE" | jq -r '.value' | ocamlformat --name="$FILE" - |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment