aboutsummaryrefslogtreecommitdiffhomepage
path: root/library/global.mli
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2017-07-11 19:29:26 +0200
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2017-07-13 15:14:45 +0200
commit001c95411b6674423886a085d8f624ea031a9ebc (patch)
tree0be049a0094b90c95b7e0aa5a7b1b479c24f421e /library/global.mli
parent8b3978baa5ceb41aaec4d9864c878847b82682d7 (diff)
Safer API for Global.type_of_global_in_context.
We return the abstract context instead of an arbitrary instantiation.
Diffstat (limited to 'library/global.mli')
-rw-r--r--library/global.mli4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/global.mli b/library/global.mli
index 5ddf54b4a..d9190736f 100644
--- a/library/global.mli
+++ b/library/global.mli
@@ -123,8 +123,8 @@ val is_template_polymorphic : Globnames.global_reference -> bool
val is_type_in_type : Globnames.global_reference -> bool
val type_of_global_in_context : Environ.env ->
- Globnames.global_reference -> Constr.types Univ.in_universe_context
-(** Returns the type of the constant in its global or local universe
+ Globnames.global_reference -> Constr.types * Univ.AUContext.t
+(** Returns the type of the constant in its local universe
context. The type should not be used without pushing it's universe
context in the environmnent of usage. For non-universe-polymorphic
constants, it does not matter. *)