aboutsummaryrefslogtreecommitdiffhomepage
path: root/intf
diff options
context:
space:
mode:
authorGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2014-09-11 20:00:27 +0200
committerGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2014-09-12 10:39:32 +0200
commitca300977724a6b065a98c025d400c71f41b9df4b (patch)
tree59a2fd3327b3d0eb9cd1e11cbb31605f2a08ea27 /intf
parent012fe1a96ba81ab0a7fa210610e3f25187baaf1d (diff)
Parsing evar instances.
Diffstat (limited to 'intf')
-rw-r--r--intf/constrexpr.mli4
-rw-r--r--intf/glob_term.mli2
2 files changed, 3 insertions, 3 deletions
diff --git a/intf/constrexpr.mli b/intf/constrexpr.mli
index bc2f7df24..f6660ff69 100644
--- a/intf/constrexpr.mli
+++ b/intf/constrexpr.mli
@@ -81,8 +81,8 @@ type constr_expr =
| CIf of Loc.t * constr_expr * (Name.t located option * constr_expr option)
* constr_expr * constr_expr
| CHole of Loc.t * Evar_kinds.t option * Genarg.raw_generic_argument option
- | CPatVar of Loc.t * (bool * patvar)
- | CEvar of Loc.t * Glob_term.existential_name * (Id.t * constr_expr) list option
+ | CPatVar of Loc.t * patvar
+ | CEvar of Loc.t * Glob_term.existential_name * (Id.t * constr_expr) list
| CSort of Loc.t * glob_sort
| CCast of Loc.t * constr_expr * constr_expr cast_type
| CNotation of Loc.t * notation * constr_notation_substitution
diff --git a/intf/glob_term.mli b/intf/glob_term.mli
index 9aca2306a..237d03366 100644
--- a/intf/glob_term.mli
+++ b/intf/glob_term.mli
@@ -32,7 +32,7 @@ type cases_pattern =
type glob_constr =
| GRef of (Loc.t * global_reference * glob_level list option)
| GVar of (Loc.t * Id.t)
- | GEvar of Loc.t * existential_name * (Id.t * glob_constr) list option
+ | GEvar of Loc.t * existential_name * (Id.t * glob_constr) list
| GPatVar of Loc.t * (bool * patvar) (** Used for patterns only *)
| GApp of Loc.t * glob_constr * glob_constr list
| GLambda of Loc.t * Name.t * binding_kind * glob_constr * glob_constr