hindent-6.3.0: src/HIndent/Pretty/Combinators/Comment.hs
-- | Printer combinators for handling comments.
module HIndent.Pretty.Combinators.Comment
( eolCommentsArePrinted
) where
import Control.Monad.State
import HIndent.Printer
-- | Claims that comments were printed. Next time calling 'string' will
-- print a newline before printing a text.
eolCommentsArePrinted :: Printer ()
eolCommentsArePrinted = modify (\s -> s {psEolComment = True})