diff options
author | simonpj <unknown> | 2002-10-11 08:48:13 +0000 |
---|---|---|
committer | simonpj <unknown> | 2002-10-11 08:48:13 +0000 |
commit | c1a8892080e9bd9b6fecd69999e4e487b53e81b9 (patch) | |
tree | 6929fbc7ff5d94fdee651a41917fda74d77939a0 | |
parent | 35be7d9dcd4dedb5479c2c300d56348489e7631c (diff) | |
download | haskell-c1a8892080e9bd9b6fecd69999e4e487b53e81b9.tar.gz |
[project @ 2002-10-11 08:48:13 by simonpj]
wibbles
-rw-r--r-- | ghc/compiler/parser/Parser.y | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/ghc/compiler/parser/Parser.y b/ghc/compiler/parser/Parser.y index d09226a9b7..851deb7a9a 100644 --- a/ghc/compiler/parser/Parser.y +++ b/ghc/compiler/parser/Parser.y @@ -1,6 +1,6 @@ {- -*-haskell-*- ----------------------------------------------------------------------------- -$Id: Parser.y,v 1.108 2002/10/10 15:14:37 sof Exp $ +$Id: Parser.y,v 1.109 2002/10/11 08:48:13 simonpj Exp $ Haskell grammar. @@ -413,7 +413,7 @@ topdecl :: { RdrBinding } in RdrHsDecl (InstD (InstDecl $3 binds sigs Nothing $1)) } | srcloc 'default' '(' comma_types0 ')' { RdrHsDecl (DefD (DefaultDecl $4 $1)) } | 'foreign' fdecl { RdrHsDecl $2 } - | '{-# DEPRECATED' deprecations '#-}' { RdrBindings $2 } + | '{-# DEPRECATED' deprecations '#-}' { RdrBindings (reverse $2) } | '{-# RULES' rules '#-}' { RdrBindings (reverse $2) } | srcloc '$(' exp ')' { RdrHsDecl (SpliceD (SpliceDecl $3 $1)) } | decl { $1 } @@ -487,7 +487,7 @@ letbinds :: { RdrNameHsExpr -> RdrNameHsExpr } ----------------------------------------------------------------------------- -- Transformation Rules -rules :: { [RdrBinding] } +rules :: { [RdrBinding] } -- Reversed : rules ';' rule { $3 : $1 } | rules ';' { $1 } | rule { [$1] } @@ -522,10 +522,11 @@ rule_var :: { RdrNameRuleBndr } | '(' varid '::' ctype ')' { RuleBndrSig $2 $4 } ----------------------------------------------------------------------------- --- Deprecations +-- Deprecations (c.f. rules) -deprecations :: { [RdrBinding] } - : deprecation ';' deprecations { $1 : $3 } +deprecations :: { [RdrBinding] } -- Reversed + : deprecations ';' deprecation { $3 : $1 } + | deprecations ';' { $1 } | deprecation { [$1] } | {- empty -} { [] } |