diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2010-03-07 09:34:21 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2010-03-07 09:34:21 +0000 |
commit | 49113246e668d99d4b8302e9530034cb52f94ea6 (patch) | |
tree | d56d28f10adb01fb7a6b18cd49f16282d3f3c9fc /parsing/printast.ml | |
parent | c87be95c8dafbb0bbe9e911d7b6ae493aa8aa717 (diff) | |
download | ocaml-moduletypeof.tar.gz |
Experiment: module type ofmoduletypeof
git-svn-id: http://caml.inria.fr/svn/ocaml/branches/moduletypeof@9637 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'parsing/printast.ml')
-rw-r--r-- | parsing/printast.ml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/parsing/printast.ml b/parsing/printast.ml index d35f74949c..514fbf7795 100644 --- a/parsing/printast.ml +++ b/parsing/printast.ml @@ -510,6 +510,9 @@ and module_type i ppf x = line i ppf "Pmty_with\n"; module_type i ppf mt; list i longident_x_with_constraint ppf l; + | Pmty_typeof m -> + line i ppf "Pmty_typeof\n"; + module_expr i ppf m and signature i ppf x = list i signature_item ppf x |