aboutsummaryrefslogtreecommitdiff
path: root/checker/values.ml
diff options
context:
space:
mode:
authorGaëtan Gilbert2020-04-16 23:06:35 +0200
committerGaëtan Gilbert2020-04-20 13:19:17 +0200
commit7a4e7dfbaa8dc3fa92931c4bfa39d268940e08f8 (patch)
tree13c841f5e345bc11b4ed78af0f51b8a087890fbe /checker/values.ml
parente77b7aed145718b73ca58c75bc7ed01d2b55446f (diff)
Remove mod_constraints field of module body
Diffstat (limited to 'checker/values.ml')
-rw-r--r--checker/values.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/checker/values.ml b/checker/values.ml
index b9efce6948..2bd6a37d0b 100644
--- a/checker/values.ml
+++ b/checker/values.ml
@@ -356,17 +356,17 @@ and v_impl =
and v_noimpl = v_unit
and v_module =
Tuple ("module_body",
- [|v_mp;v_impl;v_sign;Opt v_mexpr;v_context_set;v_resolver;v_retroknowledge|])
+ [|v_mp;v_impl;v_sign;Opt v_mexpr;v_resolver;v_retroknowledge|])
and v_modtype =
Tuple ("module_type_body",
- [|v_mp;v_noimpl;v_sign;Opt v_mexpr;v_context_set;v_resolver;v_unit|])
+ [|v_mp;v_noimpl;v_sign;Opt v_mexpr;v_resolver;v_unit|])
(** kernel/safe_typing *)
let v_vodigest = Sum ("module_impl",0, [| [|String|]; [|String;String|] |])
let v_deps = Array (v_tuple "dep" [|v_dp;v_vodigest|])
let v_compiled_lib =
- v_tuple "compiled" [|v_dp;v_module;v_deps;v_engagement;Any|]
+ v_tuple "compiled" [|v_dp;v_module;v_context_set;v_deps;v_engagement;Any|]
(** Library objects *)