type InfoQ = Q Info |
|
type ExpQ = Q Exp |
|
type DecQ = Q Dec |
|
type ConQ = Q Con |
|
type TypeQ = Q Type |
|
type CxtQ = Q Cxt |
|
type MatchQ = Q Match |
|
type ClauseQ = Q Clause |
|
type BodyQ = Q Body |
|
type StmtQ = Q Stmt |
|
type RangeQ = Q Range |
|
type StrictTypeQ = Q StrictType |
|
type VarStrictTypeQ = Q VarStrictType |
|
intPrimL :: Integer -> Lit |
|
floatPrimL :: Rational -> Lit |
|
doublePrimL :: Rational -> Lit |
|
integerL :: Integer -> Lit |
|
charL :: Char -> Lit |
|
stringL :: String -> Lit |
|
rationalL :: Rational -> Lit |
|
litP :: Lit -> Pat |
|
varP :: Name -> Pat |
|
tupP :: [Pat] -> Pat |
|
conP :: Name -> [Pat] -> Pat |
|
tildeP :: Pat -> Pat |
|
asP :: Name -> Pat -> Pat |
|
wildP :: Pat |
|
recP :: Name -> [FieldPat] -> Pat |
|
listP :: [Pat] -> Pat |
|
fieldPat :: Name -> Pat -> (Name, Pat) |
|
bindS :: Pat -> ExpQ -> StmtQ |
|
letS :: [DecQ] -> StmtQ |
|
noBindS :: ExpQ -> StmtQ |
|
parS :: [[StmtQ]] -> StmtQ |
|
fromR :: ExpQ -> RangeQ |
|
fromThenR :: ExpQ -> ExpQ -> RangeQ |
|
fromToR :: ExpQ -> ExpQ -> RangeQ |
|
fromThenToR :: ExpQ -> ExpQ -> ExpQ -> RangeQ |
|
normalB :: ExpQ -> BodyQ |
|
guardedB :: [(ExpQ, ExpQ)] -> BodyQ |
|
match :: Pat -> BodyQ -> [DecQ] -> MatchQ |
|
clause :: [Pat] -> BodyQ -> [DecQ] -> ClauseQ |
|
global :: Name -> ExpQ |
|
varE :: Name -> ExpQ |
|
conE :: Name -> ExpQ |
|
litE :: Lit -> ExpQ |
|
appE :: ExpQ -> ExpQ -> ExpQ |
|
infixE :: Maybe ExpQ -> ExpQ -> Maybe ExpQ -> ExpQ |
|
infixApp :: ExpQ -> ExpQ -> ExpQ -> ExpQ |
|
sectionL :: ExpQ -> ExpQ -> ExpQ |
|
sectionR :: ExpQ -> ExpQ -> ExpQ |
|
lamE :: [Pat] -> ExpQ -> ExpQ |
|
lam1E :: Pat -> ExpQ -> ExpQ |
|
tupE :: [ExpQ] -> ExpQ |
|
condE :: ExpQ -> ExpQ -> ExpQ -> ExpQ |
|
letE :: [DecQ] -> ExpQ -> ExpQ |
|
caseE :: ExpQ -> [MatchQ] -> ExpQ |
|
doE :: [StmtQ] -> ExpQ |
|
compE :: [StmtQ] -> ExpQ |
|
arithSeqE :: RangeQ -> ExpQ |
|
fromE :: ExpQ -> ExpQ |
|
fromThenE :: ExpQ -> ExpQ -> ExpQ |
|
fromToE :: ExpQ -> ExpQ -> ExpQ |
|
fromThenToE :: ExpQ -> ExpQ -> ExpQ -> ExpQ |
|
listE :: [ExpQ] -> ExpQ |
|
sigE :: ExpQ -> TypeQ -> ExpQ |
|
recConE :: Name -> [Q (Name, Exp)] -> ExpQ |
|
recUpdE :: ExpQ -> [Q (Name, Exp)] -> ExpQ |
|
stringE :: String -> ExpQ |
|
fieldExp :: Name -> ExpQ -> Q (Name, Exp) |
|
valD :: Pat -> BodyQ -> [DecQ] -> DecQ |
|
funD :: Name -> [ClauseQ] -> DecQ |
|
tySynD :: Name -> [Name] -> TypeQ -> DecQ |
|
dataD :: CxtQ -> Name -> [Name] -> [ConQ] -> [Name] -> DecQ |
|
newtypeD :: CxtQ -> Name -> [Name] -> ConQ -> [Name] -> DecQ |
|
classD :: CxtQ -> Name -> [Name] -> [DecQ] -> DecQ |
|
instanceD :: CxtQ -> TypeQ -> [DecQ] -> DecQ |
|
sigD :: Name -> TypeQ -> DecQ |
|
cxt :: [TypeQ] -> CxtQ |
|
normalC :: Name -> [StrictTypeQ] -> ConQ |
|
recC :: Name -> [VarStrictTypeQ] -> ConQ |
|
infixC :: Q (Strict, Type) -> Name -> Q (Strict, Type) -> ConQ |
|
forallT :: [Name] -> CxtQ -> TypeQ -> TypeQ |
|
varT :: Name -> TypeQ |
|
conT :: Name -> TypeQ |
|
appT :: TypeQ -> TypeQ -> TypeQ |
|
arrowT :: TypeQ |
|
listT :: TypeQ |
|
tupleT :: Int -> TypeQ |
|
isStrict :: Q Strict |
|
notStrict :: Q Strict |
|
strictType :: Q Strict -> TypeQ -> StrictTypeQ |
|
varStrictType :: Name -> StrictTypeQ -> VarStrictTypeQ |
|
combine :: [([(Name, Name)], Pat)] -> ([(Name, Name)], [Pat]) |
|
rename :: Pat -> Q ([(Name, Name)], Pat) |
|
genpat :: Pat -> Q (Name -> ExpQ, Pat) |
|
alpha :: [(Name, Name)] -> Name -> ExpQ |
|
appsE :: [ExpQ] -> ExpQ |
|
simpleMatch :: Pat -> Exp -> Match |
|
nestDepth :: Int |
|
type Precedence = Int |
|
appPrec :: Precedence |
|
opPrec :: Precedence |
|
noPrec :: Precedence |
|
parensIf :: Bool -> Doc -> Doc |
|
pprName :: Name -> Doc |
|
pprInfo :: Info -> Doc |
|
pprFixity :: Name -> Fixity -> Doc |
|
pprExp :: Exp -> Doc |
|
pprExpI :: Precedence -> Exp -> Doc |
|
pprFields :: [(Name, Exp)] -> Doc |
|
pprMaybeExp :: Precedence -> Maybe Exp -> Doc |
|
pprStmt :: Stmt -> Doc |
|
pprMatch :: Match -> Doc |
|
pprBody :: Bool -> Body -> Doc |
|
pprLit :: Precedence -> Lit -> Doc |
|
pprPat :: Pat -> Doc |
|
pprPatI :: Precedence -> Pat -> Doc |
|
pprDec :: Dec -> Doc |
|
pprForeign :: Foreign -> Doc |
|
pprClause :: Clause -> Doc |
|
pprCon :: Con -> Doc |
|
pprVarStrictType :: (Name, Strict, Type) -> Doc |
|
pprStrictType :: (Strict, Type) -> Doc |
|
pprParendType :: Type -> Doc |
|
pprType :: Type -> Doc |
|
pprTyApp :: (Type, [Type]) -> Doc |
|
split :: Type -> (Type, [Type]) |
|
pprCxt :: Cxt -> Doc |
|
pprRange :: Range -> Doc |
|
pprRangeI :: Range -> Doc |
|
where_clause :: [Dec] -> Doc |
|
showtextl :: Show a => a -> Doc |