diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-02-01 14:14:59 +0000 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-02-01 15:34:33 +0000 |
commit | 8760cf35f0603b939c34224fa391c8ee5a61e095 (patch) | |
tree | bfcc2a8e4912824990ce723964d4475e39f0dcb7 /compiler/parser | |
parent | dc7549a170aa531c50f15383f39a856d2ad94d8e (diff) | |
download | haskell-8760cf35f0603b939c34224fa391c8ee5a61e095.tar.gz |
Whitespace only
Diffstat (limited to 'compiler/parser')
-rw-r--r-- | compiler/parser/Parser.y.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/parser/Parser.y.pp b/compiler/parser/Parser.y.pp index c552b6aec7..623ae79565 100644 --- a/compiler/parser/Parser.y.pp +++ b/compiler/parser/Parser.y.pp @@ -1789,12 +1789,12 @@ maybe_stmt :: { Maybe (LStmt RdrName (LHsExpr RdrName)) } | {- nothing -} { Nothing } stmt :: { LStmt RdrName (LHsExpr RdrName) } - : qual { $1 } + : qual { $1 } | 'rec' stmtlist { LL $ mkRecStmt (unLoc $2) } qual :: { LStmt RdrName (LHsExpr RdrName) } : pat '<-' exp { LL $ mkBindStmt $1 $3 } - | exp { L1 $ mkBodyStmt $1 } + | exp { L1 $ mkBodyStmt $1 } | 'let' binds { LL $ LetStmt (unLoc $2) } ----------------------------------------------------------------------------- |