summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Doligez <damien.doligez-inria.fr>2003-06-20 15:16:57 +0000
committerDamien Doligez <damien.doligez-inria.fr>2003-06-20 15:16:57 +0000
commitbe5cd6de3ed597bd323d6f1005f70170f5162e5d (patch)
tree37800fc20cf3e1e40c790cfc147c06e720944490
parent51d50c770261f0d5258a16a9be064277d86d3f7f (diff)
reparation module ... : SIG with type ... and type ...
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@5606 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r--parsing/parser.mly4
1 files changed, 2 insertions, 2 deletions
diff --git a/parsing/parser.mly b/parsing/parser.mly
index 150f452f2..c749f915f 100644
--- a/parsing/parser.mly
+++ b/parsing/parser.mly
@@ -326,10 +326,10 @@ The precedences must be listed from low to high.
%nonassoc IN
%nonassoc below_SEMI
%nonassoc SEMI /* below EQUAL ({lbl=...; lbl=...}) */
-%nonassoc LET AND /* above SEMI ( ...; let ... in ...) */
- /* below WITH (module rec A: SIG with ... and ...) */
+%nonassoc LET /* above SEMI ( ...; let ... in ...) */
%nonassoc below_WITH
%nonassoc FUNCTION WITH /* below BAR (match ... with ...) */
+%nonassoc AND /* above WITH (module rec A: SIG with ... and ...) */
%nonassoc THEN /* below ELSE (if ... then ...) */
%nonassoc ELSE /* (if ... then ... else ...) */
%nonassoc LESSMINUS /* below COLONEQUAL (lbl <- x := e) */