aboutsummaryrefslogtreecommitdiffhomepage
path: root/engine/termops.mli
diff options
context:
space:
mode:
authorGravatar Matthieu Sozeau <mattam@mattam.org>2016-10-12 16:18:02 +0200
committerGravatar Matthieu Sozeau <mattam@mattam.org>2016-10-21 17:43:12 +0200
commit0aec9033a0b78ee1629f7aabce1c8a2e3cfbe619 (patch)
tree5f4f09a2796572e98d09208c46f52a919ba4cc8f /engine/termops.mli
parentf667e270116aaf46f1c27b5a925d3ffaf0d31365 (diff)
sections/hints: prevent Not_found in get_type_of
due to cleared/reverted section variables. This fixes the get_type_of but requires keeping information around about the section hyps available in goals during resolution. It's optimized for the non-section case (should incur no cost there), and the case where no section variables are cleared.
Diffstat (limited to 'engine/termops.mli')
-rw-r--r--engine/termops.mli1
1 files changed, 1 insertions, 0 deletions
diff --git a/engine/termops.mli b/engine/termops.mli
index 0a7ac1f26..fd8edafbc 100644
--- a/engine/termops.mli
+++ b/engine/termops.mli
@@ -121,6 +121,7 @@ val dependent_in_decl : constr -> Context.Named.Declaration.t -> bool
val count_occurrences : constr -> constr -> int
val collect_metas : constr -> int list
val collect_vars : constr -> Id.Set.t (** for visible vars only *)
+val vars_of_global_reference : env -> Globnames.global_reference -> Id.Set.t
val occur_term : constr -> constr -> bool (** Synonymous
of dependent
Substitution of metavariables *)