├── .gitignore ├── .ocp-indent ├── .travis.yml ├── CHANGES ├── LICENSE ├── Makefile ├── README.md ├── dune-project ├── dune-workspace.dev ├── ppx_tools.opam └── src ├── ast_convenience.ml ├── ast_convenience.mli ├── ast_mapper_class.ml ├── ast_mapper_class.mli ├── dumpast.ml ├── dune ├── genlifter.ml ├── ppx_metaquot.ml ├── ppx_metaquot_main.ml └── rewriter.ml /.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | *.install 3 | .merlin 4 | -------------------------------------------------------------------------------- /.ocp-indent: -------------------------------------------------------------------------------- 1 | match_clause=4 2 | strict_with=auto 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_tools/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_tools/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_tools/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_tools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_tools/HEAD/README.md -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_tools/HEAD/dune-project -------------------------------------------------------------------------------- /dune-workspace.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_tools/HEAD/dune-workspace.dev -------------------------------------------------------------------------------- /ppx_tools.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_tools/HEAD/ppx_tools.opam -------------------------------------------------------------------------------- /src/ast_convenience.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_tools/HEAD/src/ast_convenience.ml -------------------------------------------------------------------------------- /src/ast_convenience.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_tools/HEAD/src/ast_convenience.mli -------------------------------------------------------------------------------- /src/ast_mapper_class.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_tools/HEAD/src/ast_mapper_class.ml -------------------------------------------------------------------------------- /src/ast_mapper_class.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_tools/HEAD/src/ast_mapper_class.mli -------------------------------------------------------------------------------- /src/dumpast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_tools/HEAD/src/dumpast.ml -------------------------------------------------------------------------------- /src/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_tools/HEAD/src/dune -------------------------------------------------------------------------------- /src/genlifter.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_tools/HEAD/src/genlifter.ml -------------------------------------------------------------------------------- /src/ppx_metaquot.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_tools/HEAD/src/ppx_metaquot.ml -------------------------------------------------------------------------------- /src/ppx_metaquot_main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_tools/HEAD/src/ppx_metaquot_main.ml -------------------------------------------------------------------------------- /src/rewriter.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocaml-ppx/ppx_tools/HEAD/src/rewriter.ml --------------------------------------------------------------------------------