aboutsummaryrefslogtreecommitdiffhomepage
path: root/interp/symbols.ml
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-11-01 22:22:24 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-11-01 22:22:24 +0000
commit50d21e5c4f9613a2080d71925dd3a747aed70f5d (patch)
treee808f620f7bf702860a28807f2ecf841dc67e843 /interp/symbols.ml
parent17c18b808adde5d8c1b9c11f3b1956b47ded282f (diff)
Ajout notations pour motifs de Cases; renommage map_aconstr_with_binders_loc
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@4756 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'interp/symbols.ml')
-rw-r--r--interp/symbols.ml9
1 files changed, 8 insertions, 1 deletions
diff --git a/interp/symbols.ml b/interp/symbols.ml
index cd0ac0aa1..a79d98495 100644
--- a/interp/symbols.ml
+++ b/interp/symbols.ml
@@ -169,6 +169,10 @@ let rawconstr_key = function
| RRef (_,ref) -> RefKey ref
| _ -> Oth
+let cases_pattern_key = function
+ | PatCstr (_,ref,_,_) -> RefKey (ConstructRef ref)
+ | _ -> Oth
+
let aconstr_key = function
| AApp (ARef ref,args) -> RefKey ref, Some (List.length args)
| ARef ref -> RefKey ref, Some 0
@@ -294,6 +298,9 @@ let rec interp_notation ntn scopes =
let uninterp_notations c =
Gmapl.find (rawconstr_key c) !notations_key_table
+let uninterp_cases_pattern_notations c =
+ Gmapl.find (cases_pattern_key c) !notations_key_table
+
let availability_of_notation (ntn_scope,ntn) scopes =
let f scope =
Stringmap.mem ntn (Stringmap.find scope !scope_map).notations in
@@ -461,7 +468,7 @@ let pr_scope_classes sc =
spc() ++ prlist_with_sep spc pr_class l) ++ fnl()
let rec rawconstr_of_aconstr () x =
- map_aconstr_with_binders_loc dummy_loc (fun id () -> (id,()))
+ rawconstr_of_aconstr_with_binders dummy_loc (fun id () -> (id,()))
rawconstr_of_aconstr () x
let pr_notation_info prraw ntn c =