diff options
author | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2012-07-10 08:25:58 +0000 |
---|---|---|
committer | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2012-07-10 08:25:58 +0000 |
commit | 43c7d1b51c6fb3a91b9729b816630f536d4a60e2 (patch) | |
tree | a6f0ddf5bfdfa37b80ca7bdd07794e1b94336fcd /typing/typedtree.ml | |
parent | d04453c5dedcbc4ced9439d8c02b447ffe10fe03 (diff) |
fix PR#5674: move Texp_poly and Texp_newtype to exp_extra
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@12680 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'typing/typedtree.ml')
-rw-r--r-- | typing/typedtree.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/typing/typedtree.ml b/typing/typedtree.ml index 08ab35e4c..fda05b041 100644 --- a/typing/typedtree.ml +++ b/typing/typedtree.ml @@ -61,6 +61,8 @@ and expression = and exp_extra = | Texp_constraint of core_type option * core_type option | Texp_open of Path.t * Longident.t loc * Env.t + | Texp_poly of core_type option + | Texp_newtype of string and expression_desc = Texp_ident of Path.t * Longident.t loc * Types.value_description @@ -98,9 +100,7 @@ and expression_desc = | Texp_assert of expression | Texp_assertfalse | Texp_lazy of expression - | Texp_poly of expression * core_type option | Texp_object of class_structure * string list - | Texp_newtype of string * expression | Texp_pack of module_expr and meth = |