aboutsummaryrefslogtreecommitdiffhomepage
path: root/kernel/declarations.ml
diff options
context:
space:
mode:
authorGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-12-14 15:56:25 +0000
committerGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-12-14 15:56:25 +0000
commit67f5c70a480c95cfb819fc68439781b5e5e95794 (patch)
tree67b88843ba54b4aefc7f604e18e3a71ec7202fd3 /kernel/declarations.ml
parentcc03a5f82efa451b6827af9a9b42cee356ed4f8a (diff)
Modulification of identifier
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16071 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'kernel/declarations.ml')
-rw-r--r--kernel/declarations.ml12
1 files changed, 6 insertions, 6 deletions
diff --git a/kernel/declarations.ml b/kernel/declarations.ml
index 3e5b10f3b..baeab9142 100644
--- a/kernel/declarations.ml
+++ b/kernel/declarations.ml
@@ -241,7 +241,7 @@ type one_inductive_body = {
(* Primitive datas *)
(* Name of the type: [Ii] *)
- mind_typename : identifier;
+ mind_typename : Id.t;
(* Arity context of [Ii] with parameters: [forall params, Ui] *)
mind_arity_ctxt : rel_context;
@@ -250,7 +250,7 @@ type one_inductive_body = {
mind_arity : inductive_arity;
(* Names of the constructors: [cij] *)
- mind_consnames : identifier array;
+ mind_consnames : Id.t array;
(* Types of the constructors with parameters: [forall params, Tij],
where the Ik are replaced by de Bruijn index in the context
@@ -363,10 +363,10 @@ let hcons_indarity = function
let hcons_mind_packet oib =
{ oib with
- mind_typename = hcons_ident oib.mind_typename;
+ mind_typename = Id.hcons oib.mind_typename;
mind_arity_ctxt = hcons_rel_context oib.mind_arity_ctxt;
mind_arity = hcons_indarity oib.mind_arity;
- mind_consnames = Array.smartmap hcons_ident oib.mind_consnames;
+ mind_consnames = Array.smartmap Id.hcons oib.mind_consnames;
mind_user_lc = Array.smartmap hcons_types oib.mind_user_lc;
mind_nf_lc = Array.smartmap hcons_types oib.mind_nf_lc }
@@ -395,8 +395,8 @@ and struct_expr_body =
| SEBwith of struct_expr_body * with_declaration_body
and with_declaration_body =
- With_module_body of identifier list * module_path
- | With_definition_body of identifier list * constant_body
+ With_module_body of Id.t list * module_path
+ | With_definition_body of Id.t list * constant_body
and module_body =
{ mod_mp : module_path;