diff options
author | Fabrice Le Fessant <Fabrice.Le_fessant@inria.fr> | 2011-03-01 17:40:29 +0000 |
---|---|---|
committer | Fabrice Le Fessant <Fabrice.Le_fessant@inria.fr> | 2011-03-01 17:40:29 +0000 |
commit | 40d4de47fc9d226c06ef93b8e9a8b63b4f0c67b0 (patch) | |
tree | aa7c6b8f5a321d6e49505e1ad61d342e66568935 /ocaml-binary-annot/parsing | |
parent | 6b832324045c29a9f466e674fa45632bc10009b4 (diff) | |
download | ocaml-binary-annot.tar.gz |
binary-annot: added some tools cmt2ml, cmt2annotbinary-annot
git-svn-id: http://caml.inria.fr/svn/ocaml/branches/binary-annot@10965 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'ocaml-binary-annot/parsing')
-rw-r--r-- | ocaml-binary-annot/parsing/pprintast.ml | 1 | ||||
-rw-r--r-- | ocaml-binary-annot/parsing/pprintast.mli | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/ocaml-binary-annot/parsing/pprintast.ml b/ocaml-binary-annot/parsing/pprintast.ml index eb9c2722b6..9c1c598f47 100644 --- a/ocaml-binary-annot/parsing/pprintast.ml +++ b/ocaml-binary-annot/parsing/pprintast.ml @@ -2062,4 +2062,5 @@ let toplevel_phrase ppf x = pp_print_newline ppf ();; let print_structure = structure +let print_signature = signature diff --git a/ocaml-binary-annot/parsing/pprintast.mli b/ocaml-binary-annot/parsing/pprintast.mli index f7efc81904..f9413b4470 100644 --- a/ocaml-binary-annot/parsing/pprintast.mli +++ b/ocaml-binary-annot/parsing/pprintast.mli @@ -1,4 +1,5 @@ (* Printing code expressions *) val print_structure : Format.formatter -> Parsetree.structure -> unit +val print_signature : Format.formatter -> Parsetree.signature -> unit |