1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
|
% -----------------------------------------------------------------------------
%
% (c) The GHC Team, 1997-2000
%
% A suite of datatypes describing the abstract syntax of Haskell 98.
%
% -----------------------------------------------------------------------------
> module HsSyn (
> SrcLoc(..), Module(..), HsQName(..), HsName(..),
> HsModule(..), HsExportSpec(..),
> HsImportDecl(..), HsImportSpec(..), HsAssoc(..),
> HsDecl(..), HsMatch(..), HsConDecl(..), HsBangType(..), HsRhs(..),
> HsGuardedRhs(..), HsQualType(..), HsType(..), HsContext, HsAsst,
> HsLiteral(..), HsExp(..), HsPat(..), HsPatField(..), HsStmt(..),
> HsFieldUpdate(..), HsAlt(..), HsGuardedAlts(..), HsGuardedAlt(..),
>
> prelude_mod, main_mod,
> unit_con_name, tuple_con_name,
> unit_con, tuple_con,
> as_name, qualified_name, hiding_name, minus_name, pling_name,
> unit_tycon_name, fun_tycon_name, list_tycon_name, tuple_tycon_name,
> unit_tycon, fun_tycon, list_tycon, tuple_tycon,
> ) where
> data SrcLoc = SrcLoc Int Int -- (Line, Indentation)
> deriving (Eq,Ord,Show)
>
> newtype Module = Module String
> deriving (Eq,Ord,Show)
>
> data HsQName
> = Qual Module HsName
> | UnQual HsName
> deriving (Eq,Ord)
>
> instance Show HsQName where
> showsPrec _ (Qual (Module m) s) =
> showString m . showString "." . shows s
> showsPrec _ (UnQual s) = shows s
>
> data HsName
> = HsIdent String
> | HsSymbol String
> | HsSpecial String
> deriving (Eq,Ord)
>
> instance Show HsName where
> showsPrec _ (HsIdent s) = showString s
> showsPrec _ (HsSymbol s) = showString s
> showsPrec _ (HsSpecial s) = showString s
>
> data HsModule = HsModule Module (Maybe [HsExportSpec])
> [HsImportDecl] [HsDecl]
> deriving Show
Export/Import Specifications.
> data HsExportSpec
> = HsEVar HsQName -- variable
> | HsEAbs HsQName -- T
> | HsEThingAll HsQName -- T(..)
> | HsEThingWith HsQName [HsQName] -- T(C_1,...,C_n)
> | HsEModuleContents Module -- module M (not for imports)
> deriving (Eq,Show)
>
> data HsImportDecl
> = HsImportDecl SrcLoc Module Bool (Maybe Module)
> (Maybe (Bool,[HsImportSpec]))
> deriving (Eq,Show)
>
> data HsImportSpec
> = HsIVar HsName -- variable
> | HsIAbs HsName -- T
> | HsIThingAll HsName -- T(..)
> | HsIThingWith HsName [HsName] -- T(C_1,...,C_n)
> deriving (Eq,Show)
>
> data HsAssoc
> = HsAssocNone
> | HsAssocLeft
> | HsAssocRight
> deriving (Eq,Show)
>
> data HsDecl
> = HsTypeDecl SrcLoc HsName [HsName] HsType
> | HsDataDecl SrcLoc HsContext HsName [HsName] [HsConDecl] [HsQName]
> | HsInfixDecl SrcLoc HsAssoc Int [HsName]
> | HsNewTypeDecl SrcLoc HsContext HsName [HsName] HsConDecl [HsQName]
> | HsClassDecl SrcLoc HsQualType [HsDecl]
> | HsInstDecl SrcLoc HsQualType [HsDecl]
> | HsDefaultDecl SrcLoc HsType
> | HsTypeSig SrcLoc [HsName] HsQualType
> | HsFunBind SrcLoc [HsMatch]
> | HsPatBind SrcLoc HsPat HsRhs {-where-} [HsDecl]
> deriving (Eq,Show)
>
> data HsMatch
> = HsMatch SrcLoc HsQName [HsPat] HsRhs {-where-} [HsDecl]
> deriving (Eq,Show)
>
> data HsConDecl
> = HsConDecl SrcLoc HsName [HsBangType]
> | HsRecDecl SrcLoc HsName [([HsName],HsBangType)]
> deriving (Eq,Show)
>
> data HsBangType
> = HsBangedTy HsType
> | HsUnBangedTy HsType
> deriving (Eq,Show)
>
> data HsRhs
> = HsUnGuardedRhs HsExp
> | HsGuardedRhss [HsGuardedRhs]
> deriving (Eq,Show)
>
> data HsGuardedRhs
> = HsGuardedRhs SrcLoc HsExp HsExp
> deriving (Eq,Show)
>
> data HsQualType
> = HsQualType HsContext HsType
> | HsUnQualType HsType
> deriving (Eq,Show)
>
> data HsType
> = HsTyFun HsType HsType
> | HsTyTuple [HsType]
> | HsTyApp HsType HsType
> | HsTyVar HsName
> | HsTyCon HsQName
> deriving (Eq,Show)
>
> type HsContext = [HsAsst]
> type HsAsst = (HsQName,[HsType]) -- for multi-parameter type classes
>
> data HsLiteral
> = HsInt Integer
> | HsChar Char
> | HsString String
> | HsFrac Rational
> -- GHC unboxed literals:
> | HsCharPrim Char
> | HsStringPrim String
> | HsIntPrim Integer
> | HsFloatPrim Rational
> | HsDoublePrim Rational
> -- GHC extension:
> | HsLitLit String
> deriving (Eq, Show)
>
> data HsExp
> = HsVar HsQName
> | HsCon HsQName
> | HsLit HsLiteral
> | HsInfixApp HsExp HsExp HsExp
> | HsApp HsExp HsExp
> | HsNegApp HsExp
> | HsLambda [HsPat] HsExp
> | HsLet [HsDecl] HsExp
> | HsIf HsExp HsExp HsExp
> | HsCase HsExp [HsAlt]
> | HsDo [HsStmt]
> | HsTuple [HsExp]
> | HsList [HsExp]
> | HsParen HsExp
> | HsLeftSection HsExp HsExp
> | HsRightSection HsExp HsExp
> | HsRecConstr HsQName [HsFieldUpdate]
> | HsRecUpdate HsExp [HsFieldUpdate]
> | HsEnumFrom HsExp
> | HsEnumFromTo HsExp HsExp
> | HsEnumFromThen HsExp HsExp
> | HsEnumFromThenTo HsExp HsExp HsExp
> | HsListComp HsExp [HsStmt]
> | HsExpTypeSig SrcLoc HsExp HsQualType
> | HsAsPat HsName HsExp -- pattern only
> | HsWildCard -- ditto
> | HsIrrPat HsExp -- ditto
> -- HsCCall (ghc extension)
> -- HsSCC (ghc extension)
> deriving (Eq,Show)
>
> data HsPat
> = HsPVar HsName
> | HsPLit HsLiteral
> | HsPNeg HsPat
> | HsPInfixApp HsPat HsQName HsPat
> | HsPApp HsQName [HsPat]
> | HsPTuple [HsPat]
> | HsPList [HsPat]
> | HsPParen HsPat
> | HsPRec HsQName [HsPatField]
> | HsPAsPat HsName HsPat
> | HsPWildCard
> | HsPIrrPat HsPat
> deriving (Eq,Show)
>
> data HsPatField
> = HsPFieldPat HsQName HsPat
> deriving (Eq,Show)
>
> data HsStmt
> = HsGenerator HsPat HsExp
> | HsQualifier HsExp
> | HsLetStmt [HsDecl]
> deriving (Eq,Show)
>
> data HsFieldUpdate
> = HsFieldUpdate HsQName HsExp
> deriving (Eq,Show)
>
> data HsAlt
> = HsAlt SrcLoc HsPat HsGuardedAlts [HsDecl]
> deriving (Eq,Show)
>
> data HsGuardedAlts
> = HsUnGuardedAlt HsExp
> | HsGuardedAlts [HsGuardedAlt]
> deriving (Eq,Show)
>
> data HsGuardedAlt
> = HsGuardedAlt SrcLoc HsExp HsExp
> deriving (Eq,Show)
Builtin names.
> prelude_mod = Module "Prelude"
> main_mod = Module "Main"
>
> unit_con_name = Qual prelude_mod (HsSpecial "()")
> tuple_con_name i = Qual prelude_mod (HsSpecial ("("++replicate i ','++")"))
>
> unit_con = HsCon unit_con_name
> tuple_con i = HsCon (tuple_con_name i)
>
> as_name = HsIdent "as"
> qualified_name = HsIdent "qualified"
> hiding_name = HsIdent "hiding"
> minus_name = HsSymbol "-"
> pling_name = HsSymbol "!"
>
> unit_tycon_name = unit_con_name
> fun_tycon_name = Qual prelude_mod (HsSymbol "->")
> list_tycon_name = Qual prelude_mod (HsIdent "[]")
> tuple_tycon_name i = tuple_con_name i
>
> unit_tycon = HsTyCon unit_tycon_name
> fun_tycon = HsTyCon fun_tycon_name
> list_tycon = HsTyCon list_tycon_name
> tuple_tycon i = HsTyCon (tuple_tycon_name i)
|