summaryrefslogtreecommitdiffstats
path: root/tools/typedtreeIter.ml
diff options
context:
space:
mode:
Diffstat (limited to 'tools/typedtreeIter.ml')
-rw-r--r--tools/typedtreeIter.ml12
1 files changed, 5 insertions, 7 deletions
diff --git a/tools/typedtreeIter.ml b/tools/typedtreeIter.ml
index 4af9a3a06..a4f45ec98 100644
--- a/tools/typedtreeIter.ml
+++ b/tools/typedtreeIter.ml
@@ -228,8 +228,11 @@ module MakeIterator(Iter : IteratorArgument) : sig
Iter.enter_expression exp;
List.iter (function (cstr, _) ->
match cstr with
- Texp_constraint (cty1, cty2) -> option iter_core_type cty1; option iter_core_type cty2
- | Texp_open (path, _, _) -> ())
+ Texp_constraint (cty1, cty2) ->
+ option iter_core_type cty1; option iter_core_type cty2
+ | Texp_open (path, _, _) -> ()
+ | Texp_poly cto -> option iter_core_type cto
+ | Texp_newtype s -> ())
exp.exp_extra;
begin
match exp.exp_desc with
@@ -322,11 +325,6 @@ module MakeIterator(Iter : IteratorArgument) : sig
iter_class_structure cl
| Texp_pack (mexpr) ->
iter_module_expr mexpr
- | Texp_poly (exp, None) -> iter_expression exp
- | Texp_poly (exp, Some ct) ->
- iter_expression exp; iter_core_type ct
- | Texp_newtype (s, exp) ->
- iter_expression exp
end;
Iter.leave_expression exp;