File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1616> module Language.Haskell.Parser (
1717> parseModule, parseModuleWithMode,
1818> ParseMode( ..) , defaultParseMode, ParseResult( ..)) where
19- >
19+ >
2020> import Language.Haskell.Syntax
2121> import Language.Haskell.ParseMonad
2222> import Language.Haskell.Lexer
@@ -443,7 +443,7 @@ Datatype declarations
443443> : vars '::' stype { ( reverse $ 1 , $3 ) }
444444
445445> stype :: { HsBangType }
446- > : type { HsUnBangedTy $ 1 }
446+ > : type { HsUnBangedTy $ 1 }
447447> | '!' atype { HsBangedTy $ 2 }
448448
449449> deriving :: { [ HsQName] }
@@ -726,7 +726,7 @@ Variables, Constructors and Operators.
726726> | '`' qvarid '`' { $ 2 }
727727
728728> conop :: { HsName }
729- > : consym { $ 1 }
729+ > : consym { $ 1 }
730730> | '`' conid '`' { $ 2 }
731731
732732> qconop :: { HsQName }
@@ -806,7 +806,7 @@ Identifiers and Symbols
806806> | STRING { HsString $ 1 }
807807
808808> srcloc :: { SrcLoc } : {% getSrcLoc }
809-
809+
810810-----------------------------------------------------------------------------
811811Layout
812812
Original file line number Diff line number Diff line change 55-- Module : Language.Haskell.Syntax
66-- Copyright : (c) The GHC Team, 1997-2000
77-- License : BSD-style (see the file libraries/base/LICENSE)
8- --
8+ --
991010-- Stability : experimental
1111-- Portability : portable
1616-- * multi-parameter type classes
1717--
1818-- * parameters of type class assertions are unrestricted
19- --
19+ --
2020-- This module has been changed so that show is a real show.
2121-- For GHC, we also derive Typeable and Data for all types.
2222
You can’t perform that action at this time.
0 commit comments