Portability | portable |
---|---|
Stability | experimental |
Maintainer | Niklas Broberg, d00nibro@chalmers.se |
Safe Haskell | Safe-Inferred |
This module contains combinators to use when building Haskell source trees programmatically, as opposed to parsing them from a string. The contents here are quite experimental and will likely receive a lot of attention when the rest has stabilised.
- name :: String -> Name
- sym :: String -> Name
- var :: Name -> Exp
- op :: Name -> QOp
- qvar :: ModuleName -> Name -> Exp
- pvar :: Name -> Pat
- app :: Exp -> Exp -> Exp
- infixApp :: Exp -> QOp -> Exp -> Exp
- appFun :: Exp -> [Exp] -> Exp
- pApp :: Name -> [Pat] -> Pat
- tuple :: [Exp] -> Exp
- pTuple :: [Pat] -> Pat
- varTuple :: [Name] -> Exp
- pvarTuple :: [Name] -> Pat
- function :: String -> Exp
- strE :: String -> Exp
- charE :: Char -> Exp
- intE :: Integer -> Exp
- strP :: String -> Pat
- charP :: Char -> Pat
- intP :: Integer -> Pat
- doE :: [Stmt] -> Exp
- lamE :: SrcLoc -> [Pat] -> Exp -> Exp
- letE :: [Decl] -> Exp -> Exp
- caseE :: Exp -> [Alt] -> Exp
- alt :: SrcLoc -> Pat -> Exp -> Alt
- altGW :: SrcLoc -> Pat -> [Stmt] -> Exp -> Binds -> Alt
- listE :: [Exp] -> Exp
- eList :: Exp
- peList :: Pat
- paren :: Exp -> Exp
- pParen :: Pat -> Pat
- qualStmt :: Exp -> Stmt
- genStmt :: SrcLoc -> Pat -> Exp -> Stmt
- letStmt :: [Decl] -> Stmt
- binds :: [Decl] -> Binds
- noBinds :: Binds
- wildcard :: Pat
- genNames :: String -> Int -> [Name]
- sfun :: SrcLoc -> Name -> [Name] -> Rhs -> Binds -> Decl
- simpleFun :: SrcLoc -> Name -> Name -> Exp -> Decl
- patBind :: SrcLoc -> Pat -> Exp -> Decl
- patBindWhere :: SrcLoc -> Pat -> Exp -> [Decl] -> Decl
- nameBind :: SrcLoc -> Name -> Exp -> Decl
- metaFunction :: String -> [Exp] -> Exp
- metaConPat :: String -> [Pat] -> Pat
Syntax building functions
An identifier with the given string as its name. The string should be a valid Haskell identifier.
A symbol identifier. The string should be a valid Haskell symbol identifier.
qvar :: ModuleName -> Name -> ExpSource
A qualified variable as expression.
A do block formed by the given statements.
The last statement in the list should be
a Qualifier
expression.
lamE :: SrcLoc -> [Pat] -> Exp -> ExpSource
Lambda abstraction, given a list of argument patterns and an expression body.
altGW :: SrcLoc -> Pat -> [Stmt] -> Exp -> Binds -> AltSource
An alternative with a single guard in a case
expression.
genNames :: String -> Int -> [Name]Source
Generate k names by appending numbers 1 through k to a given string.
More advanced building
simpleFun :: SrcLoc -> Name -> Name -> Exp -> DeclSource
A function with a single clause, a single argument, no guards and no where declarations
patBind :: SrcLoc -> Pat -> Exp -> DeclSource
A pattern bind where the pattern is a variable, and where there are no guards and no 'where' clause.
patBindWhere :: SrcLoc -> Pat -> Exp -> [Decl] -> DeclSource
A pattern bind where the pattern is a variable, and where there are no guards, but with a 'where' clause.
metaFunction :: String -> [Exp] -> ExpSource
Apply function of a given name to a list of arguments.
metaConPat :: String -> [Pat] -> PatSource
Apply a constructor of a given name to a list of pattern arguments, forming a constructor pattern.