aboutsummaryrefslogtreecommitdiff
path: root/src/HsParser.ly
diff options
context:
space:
mode:
authorsimonmar <unknown>2002-04-26 11:18:57 +0000
committersimonmar <unknown>2002-04-26 11:18:57 +0000
commit31c53d79c85274012725480b8d78d341f3affe06 (patch)
tree6c005e5816372d8a6455713debe6b3f0290ecf8c /src/HsParser.ly
parentbbd5fbab2ffebe759f20765a4dbd519b2d1381d8 (diff)
[haddock @ 2002-04-26 11:18:56 by simonmar]
- support for fundeps (partially contributed by Brett Letner - thanks Brett). - make it build with GHC 4.08.2
Diffstat (limited to 'src/HsParser.ly')
-rw-r--r--src/HsParser.ly27
1 files changed, 21 insertions, 6 deletions
diff --git a/src/HsParser.ly b/src/HsParser.ly
index c7833bf2..bae26ce6 100644
--- a/src/HsParser.ly
+++ b/src/HsParser.ly
@@ -1,5 +1,5 @@
-q-----------------------------------------------------------------------------
-$Id: HsParser.ly,v 1.4 2002/04/25 14:40:05 simonmar Exp $
+-----------------------------------------------------------------------------
+$Id: HsParser.ly,v 1.5 2002/04/26 11:18:57 simonmar Exp $
(c) Simon Marlow, Sven Panne 1997-2000
@@ -299,8 +299,8 @@ shift/reduce-conflict, so we don't handle this case here, but in bodyaux.
> | 'newtype' ctype srcloc '=' constr deriving
> {% checkDataHeader $2 `thenP` \(cs,c,t) ->
> returnP (HsNewTypeDecl $3 cs c t $5 $6) }
-> | 'class' srcloc ctype optcbody
-> { HsClassDecl $2 $3 $4 }
+> | 'class' srcloc ctype fds optcbody
+> { HsClassDecl $2 $3 $4 $5}
> | 'instance' srcloc ctype optvaldefs
> { HsInstDecl $2 $3 $4 }
> | 'default' srcloc '(' typelist ')'
@@ -500,9 +500,24 @@ Datatype declarations
-----------------------------------------------------------------------------
Class declarations
+> fds :: { [HsFunDep] }
+> : {- empty -} { [] }
+> | '|' fds1 { reverse $2 }
+
+> fds1 :: { [HsFunDep] }
+> : fds1 ',' fd { $3 : $1 }
+> | fd { [$1] }
+
+> fd :: { HsFunDep }
+> : varids0 '->' varids0 { (reverse $1, reverse $3) }
+
+> varids0 :: { [HsName] }
+> : {- empty -} { [] }
+> | varids0 tyvar { $2 : $1 }
+
> optcbody :: { [HsDecl] }
-> : 'where' decllist { $2 }
-> | {- empty -} { [] }
+> : 'where' decllist { $2 }
+> | {- empty -} { [] }
-----------------------------------------------------------------------------
Instance declarations