From: simonmar Date: Fri, 25 Jun 1999 14:38:54 +0000 (+0000) Subject: [project @ 1999-06-25 14:38:54 by simonmar] X-Git-Tag: Approximately_9120_patches~6077 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=ea342fbcc2fe973f2a7026dcaa424c57adde30a0 [project @ 1999-06-25 14:38:54 by simonmar] 'do' expressions must have a non-empty list of statements. --- diff --git a/ghc/compiler/parser/Parser.y b/ghc/compiler/parser/Parser.y index 4d24d4c..475534f 100644 --- a/ghc/compiler/parser/Parser.y +++ b/ghc/compiler/parser/Parser.y @@ -1,6 +1,6 @@ {- ----------------------------------------------------------------------------- -$Id: Parser.y,v 1.6 1999/06/07 14:58:40 simonmar Exp $ +$Id: Parser.y,v 1.7 1999/06/25 14:38:54 simonmar Exp $ Haskell grammar. @@ -764,10 +764,13 @@ stmtlist :: { [RdrNameStmt] } | layout_on stmts close { reverse $2 } stmts :: { [RdrNameStmt] } - : stmts ';' stmt { $3 : $1 } - | stmts ';' { $1 } + : ';' stmts1 { $2 } + | stmts1 { $1 } + +stmts1 :: { [RdrNameStmt] } + : stmts1 ';' stmt { $3 : $1 } + | stmts1 ';' { $1 } | stmt { [$1] } - | {- empty -} { [] } stmt :: { RdrNameStmt } : srcloc infixexp '<-' exp {% checkPattern $2 `thenP` \p ->