diff options
| author | Matej Kosik | 2015-12-16 15:14:59 +0100 |
|---|---|---|
| committer | Matej Kosik | 2015-12-18 15:58:00 +0100 |
| commit | 722d369d1bd5a0f65b401f24d6500d5496b8e8ab (patch) | |
| tree | 537df9b78b88ed069e6e9b571581eb5d4005e2f6 /intf | |
| parent | ee3d0f32051d98bdba2a4ad2234966a2fa30a8ec (diff) | |
COMMENTS: added to some variants of the "Constrexpr.prim_token" type.
Diffstat (limited to 'intf')
| -rw-r--r-- | intf/constrexpr.mli | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/intf/constrexpr.mli b/intf/constrexpr.mli index 79f4e99e1f..6543db6a17 100644 --- a/intf/constrexpr.mli +++ b/intf/constrexpr.mli @@ -32,7 +32,9 @@ type abstraction_kind = AbsLambda | AbsPi type proj_flag = int option (** [Some n] = proj of the n-th visible argument *) -type prim_token = Numeral of Bigint.bigint | String of string +type prim_token = + | Numeral of Bigint.bigint (** representation of integer literals that appear in Coq scripts. *) + | String of string type raw_cases_pattern_expr = | RCPatAlias of Loc.t * raw_cases_pattern_expr * Id.t |
