aboutsummaryrefslogtreecommitdiff
path: root/kernel/safe_typing.ml
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/safe_typing.ml')
-rw-r--r--kernel/safe_typing.ml11
1 files changed, 6 insertions, 5 deletions
diff --git a/kernel/safe_typing.ml b/kernel/safe_typing.ml
index b71cd31b5c..e0a07dcc3a 100644
--- a/kernel/safe_typing.ml
+++ b/kernel/safe_typing.ml
@@ -218,8 +218,8 @@ let empty_private_constants = []
let add_private x xs = x :: xs
let concat_private xs ys = xs @ ys
let mk_pure_proof = Term_typing.mk_pure_proof
-let inline_private_constants_in_constr = Term_typing.handle_side_effects
-let inline_private_constants_in_definition_entry = Term_typing.handle_entry_side_effects
+let inline_private_constants_in_constr = Term_typing.inline_side_effects
+let inline_private_constants_in_definition_entry = Term_typing.inline_entry_side_effects
let side_effects_of_private_constants x = Term_typing.uniq_seff (List.rev x)
let constant_entry_of_private_constant = function
@@ -254,7 +254,9 @@ let universes_of_private eff =
if cb.const_polymorphic then acc
else (Univ.ContextSet.of_context cb.const_universes) :: acc)
acc l
- | Entries.SEsubproof _ -> acc)
+ | Entries.SEsubproof (c, cb, e) ->
+ if cb.const_polymorphic then acc
+ else Univ.ContextSet.of_context cb.const_universes :: acc)
[] eff
let env_of_safe_env senv = senv.env
@@ -517,8 +519,7 @@ let add_constant dir l decl senv =
match decl with
| ConstantEntry (true, ce) ->
let exports, ce =
- Term_typing.validate_side_effects_for_export
- senv.revstruct senv.env ce in
+ Term_typing.export_side_effects senv.revstruct senv.env ce in
exports, ConstantEntry (false, ce)
| _ -> [], decl
in