Safe Haskell | None |
---|---|
Language | Haskell98 |
HIndent.Types
Description
All types.
- newtype Printer a = Printer {
- runPrinter :: State PrintState a
- data PrintState = forall s . PrintState {
- psIndentLevel :: !Int64
- psOutput :: !Builder
- psNewline :: !Bool
- psColumn :: !Int64
- psLine :: !Int64
- psUserState :: !s
- psExtenders :: ![Extender s]
- psConfig :: !Config
- psEolComment :: !Bool
- psInsideCase :: !Bool
- data Extender s where
- data Style = forall s . Style {
- styleName :: !Text
- styleAuthor :: !Text
- styleDescription :: !Text
- styleInitialState :: !s
- styleExtenders :: ![Extender s]
- styleDefConfig :: !Config
- data Config = Config {}
- defaultConfig :: Config
- data NodeInfo = NodeInfo {
- nodeInfoSpan :: !SrcSpanInfo
- nodeInfoComments :: ![ComInfo]
- data ComInfo = ComInfo {}
- data ComInfoLocation
Documentation
A pretty printing monad.
Constructors
Printer | |
Fields
|
data PrintState Source
The state of the pretty printer.
Constructors
forall s . PrintState | |
Fields
|
Instances
A printer extender. Takes as argument the user state that the
printer was run with, and the current node to print. Use
prettyNoExt
to fallback to the built-in printer.
A printer style.
Constructors
forall s . Style | |
Fields
|
Configurations shared among the different styles. Styles may pay attention to or completely disregard this configuration.
Constructors
Config | |
Fields
|
defaultConfig :: Config Source
Default style configuration.
Information for each node in the AST.
Constructors
NodeInfo | |
Fields
|
Comment with some more info.
Constructors
ComInfo | |
Fields
|
data ComInfoLocation Source
Comment relative locations.