aboutsummaryrefslogtreecommitdiff
path: root/interp/notation_term.ml
diff options
context:
space:
mode:
authorHugo Herbelin2020-03-17 10:37:30 +0100
committerHugo Herbelin2020-11-22 13:28:40 +0100
commit83e22b5abc05902d1468d1cf033251dae46b69bc (patch)
tree561e9f5bcdbf6d76bbf7b7cbe002aa6773cdca25 /interp/notation_term.ml
parent9c841105fe2b51305abcba7bd8a574705dbd1adf (diff)
Renaming "ident" into "name" in grammar entries, to prevent confusions.
We use a deprecation phase where: - "ident" means "name" (as it used to mean), except in custom coercion entries where it already meant "ident". - "ident" will be made again available (outside situation of coercions) to mean "ident" at the end of deprecation phase. Also renaming "as ident" into "as name". Co-authored-by: Jim Fehrle <jim.fehrle@gmail.com>
Diffstat (limited to 'interp/notation_term.ml')
-rw-r--r--interp/notation_term.ml5
1 files changed, 4 insertions, 1 deletions
diff --git a/interp/notation_term.ml b/interp/notation_term.ml
index 29db23cc54..c541a19bfd 100644
--- a/interp/notation_term.ml
+++ b/interp/notation_term.ml
@@ -67,7 +67,8 @@ type extended_subscopes = Constrexpr.notation_entry_level * subscopes
type constr_as_binder_kind =
| AsIdent
- | AsIdentOrPattern
+ | AsName
+ | AsNameOrPattern
| AsStrictPattern
type notation_binder_source =
@@ -76,6 +77,8 @@ type notation_binder_source =
| NtnParsedAsPattern of bool
(* This accepts only ident *)
| NtnParsedAsIdent
+ (* This accepts only name *)
+ | NtnParsedAsName
(* This accepts ident, or pattern, or both *)
| NtnBinderParsedAsConstr of constr_as_binder_kind
(* This accepts ident, _, and quoted pattern *)