aboutsummaryrefslogtreecommitdiff
path: root/parsing/pattern.mli
diff options
context:
space:
mode:
authorherbelin2000-10-01 13:18:45 +0000
committerherbelin2000-10-01 13:18:45 +0000
commitafdb9b7fa4a6ce1165b270ffdae4574897aa7c40 (patch)
tree8b68749df9982ccb270c3cdcc2324de075c052e3 /parsing/pattern.mli
parent402679a57beec382cf90cbcddfc00d3f702cba74 (diff)
Déplacement 'a reference et binder_kind de Term vers Rawterm
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@619 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'parsing/pattern.mli')
-rw-r--r--parsing/pattern.mli4
1 files changed, 2 insertions, 2 deletions
diff --git a/parsing/pattern.mli b/parsing/pattern.mli
index 5506e070d4..ba8a883a8a 100644
--- a/parsing/pattern.mli
+++ b/parsing/pattern.mli
@@ -9,11 +9,11 @@ open Environ
(*i*)
type constr_pattern =
- | PRef of constr array reference
+ | PRef of constr array Rawterm.reference
| PRel of int
| PApp of constr_pattern * constr_pattern array
| PSoApp of int * constr_pattern list
- | PBinder of binder_kind * name * constr_pattern * constr_pattern
+ | PBinder of Rawterm.binder_kind * name * constr_pattern * constr_pattern
| PSort of Rawterm.rawsort
| PMeta of int option
| PCase of constr_pattern option * constr_pattern * constr_pattern array