diff options
| author | Pierre-Marie Pédrot | 2017-05-16 18:14:40 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2017-05-19 15:17:31 +0200 |
| commit | 6a4d15c6ce3994509085ef575cc2f242925af15a (patch) | |
| tree | 6b6a1ad50b3562c0cf21f98ec7ea934d1bbc95a9 /Init.v | |
| parent | df1c50b36f4927fdf64a3ed99a4a077f5175ac5e (diff) | |
Extending the Coq API in Ltac2.
Diffstat (limited to 'Init.v')
| -rw-r--r-- | Init.v | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -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. |
