aboutsummaryrefslogtreecommitdiff
path: root/Init.v
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2017-05-16 18:14:40 +0200
committerPierre-Marie Pédrot2017-05-19 15:17:31 +0200
commit6a4d15c6ce3994509085ef575cc2f242925af15a (patch)
tree6b6a1ad50b3562c0cf21f98ec7ea934d1bbc95a9 /Init.v
parentdf1c50b36f4927fdf64a3ed99a4a077f5175ac5e (diff)
Extending the Coq API in Ltac2.
Diffstat (limited to 'Init.v')
-rw-r--r--Init.v12
1 files changed, 11 insertions, 1 deletions
diff --git a/Init.v b/Init.v
index 8ff5837bb4..1d2d40f5c0 100644
--- a/Init.v
+++ b/Init.v
@@ -15,10 +15,20 @@ Global Set Default Proof Mode "Ltac2".
Ltac2 Type int.
Ltac2 Type string.
Ltac2 Type char.
+Ltac2 Type ident.
+(** Constr-specific built-in types *)
+Ltac2 Type meta.
Ltac2 Type evar.
+Ltac2 Type sort.
+Ltac2 Type cast.
+Ltac2 Type instance.
+Ltac2 Type constant.
+Ltac2 Type inductive.
+Ltac2 Type constructor.
+Ltac2 Type projection.
Ltac2 Type constr.
-Ltac2 Type ident.
+
Ltac2 Type message.
Ltac2 Type exn := [ .. ].
Ltac2 Type 'a array.