diff options
Diffstat (limited to 'library/libnames.mli')
-rw-r--r-- | library/libnames.mli | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/library/libnames.mli b/library/libnames.mli index ab2185a6..9bf6918e 100644 --- a/library/libnames.mli +++ b/library/libnames.mli @@ -6,7 +6,7 @@ (* * GNU Lesser General Public License Version 2.1 *) (************************************************************************) -(*i $Id: libnames.mli 8768 2006-04-28 14:25:31Z notin $ i*) +(*i $Id: libnames.mli 9488 2007-01-17 11:11:58Z herbelin $ i*) (*i*) open Pp @@ -23,6 +23,8 @@ type global_reference = | IndRef of inductive | ConstructRef of constructor +val isVarRef : global_reference -> bool + val subst_global : substitution -> global_reference -> global_reference * constr (* Turn a global reference into a construction *) @@ -141,3 +143,9 @@ val qualid_of_reference : reference -> qualid located val string_of_reference : reference -> string val pr_reference : reference -> std_ppcmds val loc_of_reference : reference -> loc + +(* popping one level of section in global names *) + +val pop_con : constant -> constant +val pop_kn : kernel_name -> kernel_name +val pop_global_reference : global_reference -> global_reference |