diff options
| author | herbelin | 2007-05-10 15:31:46 +0000 |
|---|---|---|
| committer | herbelin | 2007-05-10 15:31:46 +0000 |
| commit | de6e0fdd9f3078b9b0ccf87ba8a7dcc9cc47c9aa (patch) | |
| tree | 33bc723ec517a6ad737b7ca52a7e71f643ed3158 /parsing | |
| parent | afaa5d6ee5c27329423c152362e0969dc2d9afdd (diff) | |
Prise en compte réversibilité des notations de la forme "Notation Nil := @nil".
Ajout @ref au niveau constr pour allègement syntaxe.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@9819 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'parsing')
| -rw-r--r-- | parsing/g_constr.ml4 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/parsing/g_constr.ml4 b/parsing/g_constr.ml4 index 821426a3cd..11c9ff48a1 100644 --- a/parsing/g_constr.ml4 +++ b/parsing/g_constr.ml4 @@ -131,7 +131,8 @@ GEXTEND Gram [ [ c = operconstr LEVEL "200" -> c ] ] ; constr: - [ [ c = operconstr LEVEL "8" -> c ] ] + [ [ c = operconstr LEVEL "8" -> c + | "@"; f=global -> CAppExpl(loc,(None,f),[]) ] ] ; operconstr: [ "200" RIGHTA |
