packages feed

uuagc-0.9.38.3: src-derived/PrintCode.hs

{-# OPTIONS_GHC -XBangPatterns #-}

-- UUAGC 0.9.38.1 (PrintCode.ag)
module PrintCode where
{-# LINE 10 "PrintCode.ag" #-}

import Char (isAlphaNum)
import Pretty
import Code
import Patterns
import Options
import CommonTypes (attrname, _LOC, getName, nullIdent)
import Data.List(intersperse)
import System.IO
import System.Directory
import CommonTypes(BlockInfo, BlockType(..), identifier)
{-# LINE 18 "../src-derived/PrintCode.hs" #-}

{-# LINE 2 "./Code.ag" #-}

import Pretty
import Patterns
import Data.List(partition)
import Data.Set(Set)
import qualified Data.Set as Set
import Data.Map(Map)
import qualified Data.Map as Map
{-# LINE 29 "../src-derived/PrintCode.hs" #-}

{-# LINE 2 "./Patterns.ag" #-}

-- Patterns.ag imports
import UU.Scanner.Position(Pos)
import CommonTypes (ConstructorIdent,Identifier)
{-# LINE 36 "../src-derived/PrintCode.hs" #-}
{-# LINE 23 "PrintCode.ag" #-}

type PP_Docs = [PP_Doc]
{-# LINE 40 "../src-derived/PrintCode.hs" #-}

{-# LINE 27 "PrintCode.ag" #-}

ppMultiSeqH :: [PP_Doc] -> PP_Doc -> PP_Doc
ppMultiSeqH = ppMultiSeq' (>#<)

ppMultiSeqV :: [PP_Doc] -> PP_Doc -> PP_Doc
ppMultiSeqV = ppMultiSeq' (>-<)

ppMultiSeq' :: (PP_Doc -> PP_Doc -> PP_Doc) -> [PP_Doc] -> PP_Doc -> PP_Doc
ppMultiSeq' next strictArgs expr
  = foldr (\v r -> (v >#< "`seq`") `next` pp_parens r) expr strictArgs
{-# LINE 53 "../src-derived/PrintCode.hs" #-}

{-# LINE 296 "PrintCode.ag" #-}


reallySimple :: String -> Bool
reallySimple = and . map (\x -> isAlphaNum x || x=='_')

ppTuple True  pps = "(" >|< pp_block " " (replicate (length pps `max` 1) ')') ",(" pps
ppTuple False pps = "(" >|< pp_block " " ")" "," pps
ppUnboxedTuple True pps  = "(# " >|< pp_block " " (concat $ replicate (length pps `max` 1) " #)") ",(# " pps
ppUnboxedTuple False pps = "(# " >|< pp_block " " " #)" "," pps

{-# LINE 66 "../src-derived/PrintCode.hs" #-}

{-# LINE 395 "PrintCode.ag" #-}

locname' n = "_loc_" ++ getName n
{-# LINE 71 "../src-derived/PrintCode.hs" #-}

{-# LINE 468 "PrintCode.ag" #-}

renderDocs :: [PP_Doc] -> String
renderDocs pps = foldr (.) id (map (\d -> (disp d 50000) . ( '\n':) ) pps) ""
{-# LINE 77 "../src-derived/PrintCode.hs" #-}

{-# LINE 515 "PrintCode.ag" #-}

writeModule :: FilePath -> [PP_Doc] -> IO ()
writeModule path docs
  = do bExists <- doesFileExist path
       if bExists
        then do input <- readFile path
                seq (length input) (return ())
                if input /= output
                 then dumpIt
                 else return ()
        else dumpIt
  where
    output = renderDocs docs
    dumpIt = writeFile path output
{-# LINE 94 "../src-derived/PrintCode.hs" #-}

{-# LINE 145 "./Code.ag" #-}

-- Unboxed tuples
--   unbox  Whether unboxed tuples are wanted or not
--   inh    The inherited attributes.
--          If there are none, no unboxing can take place,
--          because in that case the semantic function (a top-level identifier) would have an unboxed type.
-- Of course we can't have an unboxed 1-tuple
mkTupleExpr :: Bool -> Bool -> Exprs -> Expr
mkTupleExpr unbox noInh exprs | not unbox || noInh || length exprs == 1 = TupleExpr exprs
                              | otherwise                               = UnboxedTupleExpr exprs
mkTupleType :: Bool -> Bool -> Types -> Type
mkTupleType unbox noInh tps | not unbox || noInh || length tps == 1 = TupleType tps
                            | otherwise                             = UnboxedTupleType tps
mkTupleLhs :: Bool -> Bool -> [String] -> Lhs
mkTupleLhs  unbox noInh comps | not unbox || noInh || length comps == 1 = TupleLhs comps
                              | otherwise                               = UnboxedTupleLhs comps
{-# LINE 113 "../src-derived/PrintCode.hs" #-}
-- CaseAlt -----------------------------------------------------
{-
   visit 0:
      inherited attributes:
         nested               : Bool
         options              : Options
         outputfile           : String
      synthesized attribute:
         pps                  : PP_Docs
   alternatives:
      alternative CaseAlt:
         child left           : Lhs 
         child expr           : Expr 
-}
-- cata
sem_CaseAlt :: CaseAlt  ->
               T_CaseAlt 
sem_CaseAlt !(CaseAlt _left _expr )  =
    (sem_CaseAlt_CaseAlt (sem_Lhs _left ) (sem_Expr _expr ) )
-- semantic domain
newtype T_CaseAlt  = T_CaseAlt (Bool ->
                                Options ->
                                String ->
                                ( PP_Docs))
data Inh_CaseAlt  = Inh_CaseAlt {nested_Inh_CaseAlt :: !(Bool),options_Inh_CaseAlt :: !(Options),outputfile_Inh_CaseAlt :: !(String)}
data Syn_CaseAlt  = Syn_CaseAlt {pps_Syn_CaseAlt :: !(PP_Docs)}
wrap_CaseAlt :: T_CaseAlt  ->
                Inh_CaseAlt  ->
                Syn_CaseAlt 
wrap_CaseAlt !(T_CaseAlt sem ) !(Inh_CaseAlt _lhsInested _lhsIoptions _lhsIoutputfile )  =
    (let ( !_lhsOpps) = sem _lhsInested _lhsIoptions _lhsIoutputfile 
     in  (Syn_CaseAlt _lhsOpps ))
sem_CaseAlt_CaseAlt :: T_Lhs  ->
                       T_Expr  ->
                       T_CaseAlt 
sem_CaseAlt_CaseAlt !(T_Lhs left_ ) !(T_Expr expr_ )  =
    (T_CaseAlt (\ (!_lhsInested)
                  (!_lhsIoptions)
                  (!_lhsIoutputfile) ->
                    (case (({-# LINE 39 "PrintCode.ag" #-}
                            _lhsIoutputfile
                            {-# LINE 155 "PrintCode.hs" #-}
                            )) of
                     { !_exprOoutputfile ->
                     (case (({-# LINE 49 "PrintCode.ag" #-}
                             _lhsIoptions
                             {-# LINE 160 "PrintCode.hs" #-}
                             )) of
                      { !_exprOoptions ->
                      (case (({-# LINE 51 "PrintCode.ag" #-}
                              _lhsInested
                              {-# LINE 165 "PrintCode.hs" #-}
                              )) of
                       { !_exprOnested ->
                       (case (({-# LINE 39 "PrintCode.ag" #-}
                               _lhsIoutputfile
                               {-# LINE 170 "PrintCode.hs" #-}
                               )) of
                        { !_leftOoutputfile ->
                        (case (({-# LINE 49 "PrintCode.ag" #-}
                                _lhsIoptions
                                {-# LINE 175 "PrintCode.hs" #-}
                                )) of
                         { !_leftOoptions ->
                         (case (({-# LINE 51 "PrintCode.ag" #-}
                                 _lhsInested
                                 {-# LINE 180 "PrintCode.hs" #-}
                                 )) of
                          { !_leftOnested ->
                          (case (({-# LINE 418 "PrintCode.ag" #-}
                                  False
                                  {-# LINE 185 "PrintCode.hs" #-}
                                  )) of
                           { !_leftOisDeclOfLet ->
                           (case (expr_ _exprOnested _exprOoptions _exprOoutputfile ) of
                            { ( !_exprIpp) ->
                                (case (left_ _leftOisDeclOfLet _leftOnested _leftOoptions _leftOoutputfile ) of
                                 { ( !_leftIpp) ->
                                     (case (({-# LINE 218 "PrintCode.ag" #-}
                                             ["{" >#< _leftIpp >#< "->", _exprIpp >#< "}"]
                                             {-# LINE 194 "PrintCode.hs" #-}
                                             )) of
                                      { !_lhsOpps ->
                                      ( _lhsOpps) }) }) }) }) }) }) }) }) }) })) )
-- CaseAlts ----------------------------------------------------
{-
   visit 0:
      inherited attributes:
         nested               : Bool
         options              : Options
         outputfile           : String
      synthesized attribute:
         pps                  : PP_Docs
   alternatives:
      alternative Cons:
         child hd             : CaseAlt 
         child tl             : CaseAlts 
      alternative Nil:
-}
-- cata
sem_CaseAlts :: CaseAlts  ->
                T_CaseAlts 
sem_CaseAlts !list  =
    (Prelude.foldr sem_CaseAlts_Cons sem_CaseAlts_Nil (Prelude.map sem_CaseAlt list) )
-- semantic domain
newtype T_CaseAlts  = T_CaseAlts (Bool ->
                                  Options ->
                                  String ->
                                  ( PP_Docs))
data Inh_CaseAlts  = Inh_CaseAlts {nested_Inh_CaseAlts :: !(Bool),options_Inh_CaseAlts :: !(Options),outputfile_Inh_CaseAlts :: !(String)}
data Syn_CaseAlts  = Syn_CaseAlts {pps_Syn_CaseAlts :: !(PP_Docs)}
wrap_CaseAlts :: T_CaseAlts  ->
                 Inh_CaseAlts  ->
                 Syn_CaseAlts 
wrap_CaseAlts !(T_CaseAlts sem ) !(Inh_CaseAlts _lhsInested _lhsIoptions _lhsIoutputfile )  =
    (let ( !_lhsOpps) = sem _lhsInested _lhsIoptions _lhsIoutputfile 
     in  (Syn_CaseAlts _lhsOpps ))
sem_CaseAlts_Cons :: T_CaseAlt  ->
                     T_CaseAlts  ->
                     T_CaseAlts 
sem_CaseAlts_Cons !(T_CaseAlt hd_ ) !(T_CaseAlts tl_ )  =
    (T_CaseAlts (\ (!_lhsInested)
                   (!_lhsIoptions)
                   (!_lhsIoutputfile) ->
                     (case (({-# LINE 39 "PrintCode.ag" #-}
                             _lhsIoutputfile
                             {-# LINE 240 "PrintCode.hs" #-}
                             )) of
                      { !_tlOoutputfile ->
                      (case (({-# LINE 49 "PrintCode.ag" #-}
                              _lhsIoptions
                              {-# LINE 245 "PrintCode.hs" #-}
                              )) of
                       { !_tlOoptions ->
                       (case (({-# LINE 55 "PrintCode.ag" #-}
                               _lhsInested
                               {-# LINE 250 "PrintCode.hs" #-}
                               )) of
                        { !_tlOnested ->
                        (case (({-# LINE 39 "PrintCode.ag" #-}
                                _lhsIoutputfile
                                {-# LINE 255 "PrintCode.hs" #-}
                                )) of
                         { !_hdOoutputfile ->
                         (case (({-# LINE 49 "PrintCode.ag" #-}
                                 _lhsIoptions
                                 {-# LINE 260 "PrintCode.hs" #-}
                                 )) of
                          { !_hdOoptions ->
                          (case (({-# LINE 55 "PrintCode.ag" #-}
                                  _lhsInested
                                  {-# LINE 265 "PrintCode.hs" #-}
                                  )) of
                           { !_hdOnested ->
                           (case (tl_ _tlOnested _tlOoptions _tlOoutputfile ) of
                            { ( !_tlIpps) ->
                                (case (hd_ _hdOnested _hdOoptions _hdOoutputfile ) of
                                 { ( !_hdIpps) ->
                                     (case (({-# LINE 68 "PrintCode.ag" #-}
                                             _hdIpps ++ _tlIpps
                                             {-# LINE 274 "PrintCode.hs" #-}
                                             )) of
                                      { !_lhsOpps ->
                                      ( _lhsOpps) }) }) }) }) }) }) }) }) })) )
sem_CaseAlts_Nil :: T_CaseAlts 
sem_CaseAlts_Nil  =
    (T_CaseAlts (\ (!_lhsInested)
                   (!_lhsIoptions)
                   (!_lhsIoutputfile) ->
                     (case (({-# LINE 69 "PrintCode.ag" #-}
                             []
                             {-# LINE 285 "PrintCode.hs" #-}
                             )) of
                      { !_lhsOpps ->
                      ( _lhsOpps) })) )
-- Chunk -------------------------------------------------------
{-
   visit 0:
      inherited attributes:
         importBlocks         : PP_Doc
         isDeclOfLet          : Bool
         mainFile             : String
         mainName             : String
         moduleHeader         : String -> String -> String -> Bool -> String
         nested               : Bool
         options              : Options
         optionsLine          : String
         pragmaBlocks         : String
         textBlockMap         : Map BlockInfo PP_Doc
         textBlocks           : PP_Doc
      synthesized attributes:
         appendCommon         : [[PP_Doc]]
         appendMain           : [[PP_Doc]]
         genSems              : IO ()
         imports              : [String]
         pps                  : PP_Docs
   alternatives:
      alternative Chunk:
         child name           : {String}
         child comment        : Decl 
         child info           : Decls 
         child dataDef        : Decls 
         child cataFun        : Decls 
         child semDom         : Decls 
         child semWrapper     : Decls 
         child semFunctions   : Decls 
         child semNames       : {[String]}
         visit 0:
            local outputfile  : _
            local exports     : _
-}
-- cata
sem_Chunk :: Chunk  ->
             T_Chunk 
sem_Chunk !(Chunk _name _comment _info _dataDef _cataFun _semDom _semWrapper _semFunctions _semNames )  =
    (sem_Chunk_Chunk _name (sem_Decl _comment ) (sem_Decls _info ) (sem_Decls _dataDef ) (sem_Decls _cataFun ) (sem_Decls _semDom ) (sem_Decls _semWrapper ) (sem_Decls _semFunctions ) _semNames )
-- semantic domain
newtype T_Chunk  = T_Chunk (PP_Doc ->
                            Bool ->
                            String ->
                            String ->
                            (String -> String -> String -> Bool -> String) ->
                            Bool ->
                            Options ->
                            String ->
                            String ->
                            (Map BlockInfo PP_Doc) ->
                            PP_Doc ->
                            ( ([[PP_Doc]]),([[PP_Doc]]),(IO ()),([String]),PP_Docs))
data Inh_Chunk  = Inh_Chunk {importBlocks_Inh_Chunk :: !(PP_Doc),isDeclOfLet_Inh_Chunk :: !(Bool),mainFile_Inh_Chunk :: !(String),mainName_Inh_Chunk :: !(String),moduleHeader_Inh_Chunk :: !((String -> String -> String -> Bool -> String)),nested_Inh_Chunk :: !(Bool),options_Inh_Chunk :: !(Options),optionsLine_Inh_Chunk :: !(String),pragmaBlocks_Inh_Chunk :: !(String),textBlockMap_Inh_Chunk :: !((Map BlockInfo PP_Doc)),textBlocks_Inh_Chunk :: !(PP_Doc)}
data Syn_Chunk  = Syn_Chunk {appendCommon_Syn_Chunk :: !(([[PP_Doc]])),appendMain_Syn_Chunk :: !(([[PP_Doc]])),genSems_Syn_Chunk :: !((IO ())),imports_Syn_Chunk :: !(([String])),pps_Syn_Chunk :: !(PP_Docs)}
wrap_Chunk :: T_Chunk  ->
              Inh_Chunk  ->
              Syn_Chunk 
wrap_Chunk !(T_Chunk sem ) !(Inh_Chunk _lhsIimportBlocks _lhsIisDeclOfLet _lhsImainFile _lhsImainName _lhsImoduleHeader _lhsInested _lhsIoptions _lhsIoptionsLine _lhsIpragmaBlocks _lhsItextBlockMap _lhsItextBlocks )  =
    (let ( !_lhsOappendCommon,!_lhsOappendMain,!_lhsOgenSems,!_lhsOimports,!_lhsOpps) = sem _lhsIimportBlocks _lhsIisDeclOfLet _lhsImainFile _lhsImainName _lhsImoduleHeader _lhsInested _lhsIoptions _lhsIoptionsLine _lhsIpragmaBlocks _lhsItextBlockMap _lhsItextBlocks 
     in  (Syn_Chunk _lhsOappendCommon _lhsOappendMain _lhsOgenSems _lhsOimports _lhsOpps ))
sem_Chunk_Chunk :: String ->
                   T_Decl  ->
                   T_Decls  ->
                   T_Decls  ->
                   T_Decls  ->
                   T_Decls  ->
                   T_Decls  ->
                   T_Decls  ->
                   ([String]) ->
                   T_Chunk 
sem_Chunk_Chunk !name_ !(T_Decl comment_ ) !(T_Decls info_ ) !(T_Decls dataDef_ ) !(T_Decls cataFun_ ) !(T_Decls semDom_ ) !(T_Decls semWrapper_ ) !(T_Decls semFunctions_ ) !semNames_  =
    (T_Chunk (\ (!_lhsIimportBlocks)
                (!_lhsIisDeclOfLet)
                (!_lhsImainFile)
                (!_lhsImainName)
                (!_lhsImoduleHeader)
                (!_lhsInested)
                (!_lhsIoptions)
                (!_lhsIoptionsLine)
                (!_lhsIpragmaBlocks)
                (!_lhsItextBlockMap)
                (!_lhsItextBlocks) ->
                  (case (({-# LINE 43 "PrintCode.ag" #-}
                          if sepSemMods _lhsIoptions
                          then _lhsImainFile ++ "_" ++ name_ ++ ".hs"
                          else _lhsImainFile ++ ".hs"
                          {-# LINE 377 "PrintCode.hs" #-}
                          )) of
                   { !_outputfile ->
                   (case (({-# LINE 39 "PrintCode.ag" #-}
                           _outputfile
                           {-# LINE 382 "PrintCode.hs" #-}
                           )) of
                    { !_semDomOoutputfile ->
                    (case (({-# LINE 49 "PrintCode.ag" #-}
                            _lhsIoptions
                            {-# LINE 387 "PrintCode.hs" #-}
                            )) of
                     { !_semDomOoptions ->
                     (case (({-# LINE 53 "PrintCode.ag" #-}
                             _lhsInested
                             {-# LINE 392 "PrintCode.hs" #-}
                             )) of
                      { !_semDomOnested ->
                      (case (({-# LINE 403 "PrintCode.ag" #-}
                              _lhsIisDeclOfLet
                              {-# LINE 397 "PrintCode.hs" #-}
                              )) of
                       { !_semDomOisDeclOfLet ->
                       (case (({-# LINE 39 "PrintCode.ag" #-}
                               _outputfile
                               {-# LINE 402 "PrintCode.hs" #-}
                               )) of
                        { !_dataDefOoutputfile ->
                        (case (({-# LINE 49 "PrintCode.ag" #-}
                                _lhsIoptions
                                {-# LINE 407 "PrintCode.hs" #-}
                                )) of
                         { !_dataDefOoptions ->
                         (case (({-# LINE 53 "PrintCode.ag" #-}
                                 _lhsInested
                                 {-# LINE 412 "PrintCode.hs" #-}
                                 )) of
                          { !_dataDefOnested ->
                          (case (({-# LINE 403 "PrintCode.ag" #-}
                                  _lhsIisDeclOfLet
                                  {-# LINE 417 "PrintCode.hs" #-}
                                  )) of
                           { !_dataDefOisDeclOfLet ->
                           (case (({-# LINE 39 "PrintCode.ag" #-}
                                   _outputfile
                                   {-# LINE 422 "PrintCode.hs" #-}
                                   )) of
                            { !_commentOoutputfile ->
                            (case (({-# LINE 49 "PrintCode.ag" #-}
                                    _lhsIoptions
                                    {-# LINE 427 "PrintCode.hs" #-}
                                    )) of
                             { !_commentOoptions ->
                             (case (({-# LINE 51 "PrintCode.ag" #-}
                                     _lhsInested
                                     {-# LINE 432 "PrintCode.hs" #-}
                                     )) of
                              { !_commentOnested ->
                              (case (({-# LINE 403 "PrintCode.ag" #-}
                                      _lhsIisDeclOfLet
                                      {-# LINE 437 "PrintCode.hs" #-}
                                      )) of
                               { !_commentOisDeclOfLet ->
                               (case (semDom_ _semDomOisDeclOfLet _semDomOnested _semDomOoptions _semDomOoutputfile ) of
                                { ( !_semDomIpps) ->
                                    (case (dataDef_ _dataDefOisDeclOfLet _dataDefOnested _dataDefOoptions _dataDefOoutputfile ) of
                                     { ( !_dataDefIpps) ->
                                         (case (comment_ _commentOisDeclOfLet _commentOnested _commentOoptions _commentOoutputfile ) of
                                          { ( !_commentIpp) ->
                                              (case (({-# LINE 482 "PrintCode.ag" #-}
                                                      [ [_commentIpp]
                                                      , _dataDefIpps
                                                      , _semDomIpps
                                                      ]
                                                      {-# LINE 451 "PrintCode.hs" #-}
                                                      )) of
                                               { !_lhsOappendCommon ->
                                               (case (({-# LINE 39 "PrintCode.ag" #-}
                                                       _outputfile
                                                       {-# LINE 456 "PrintCode.hs" #-}
                                                       )) of
                                                { !_semWrapperOoutputfile ->
                                                (case (({-# LINE 49 "PrintCode.ag" #-}
                                                        _lhsIoptions
                                                        {-# LINE 461 "PrintCode.hs" #-}
                                                        )) of
                                                 { !_semWrapperOoptions ->
                                                 (case (({-# LINE 53 "PrintCode.ag" #-}
                                                         _lhsInested
                                                         {-# LINE 466 "PrintCode.hs" #-}
                                                         )) of
                                                  { !_semWrapperOnested ->
                                                  (case (({-# LINE 403 "PrintCode.ag" #-}
                                                          _lhsIisDeclOfLet
                                                          {-# LINE 471 "PrintCode.hs" #-}
                                                          )) of
                                                   { !_semWrapperOisDeclOfLet ->
                                                   (case (({-# LINE 39 "PrintCode.ag" #-}
                                                           _outputfile
                                                           {-# LINE 476 "PrintCode.hs" #-}
                                                           )) of
                                                    { !_cataFunOoutputfile ->
                                                    (case (({-# LINE 49 "PrintCode.ag" #-}
                                                            _lhsIoptions
                                                            {-# LINE 481 "PrintCode.hs" #-}
                                                            )) of
                                                     { !_cataFunOoptions ->
                                                     (case (({-# LINE 53 "PrintCode.ag" #-}
                                                             _lhsInested
                                                             {-# LINE 486 "PrintCode.hs" #-}
                                                             )) of
                                                      { !_cataFunOnested ->
                                                      (case (({-# LINE 403 "PrintCode.ag" #-}
                                                              _lhsIisDeclOfLet
                                                              {-# LINE 491 "PrintCode.hs" #-}
                                                              )) of
                                                       { !_cataFunOisDeclOfLet ->
                                                       (case (semWrapper_ _semWrapperOisDeclOfLet _semWrapperOnested _semWrapperOoptions _semWrapperOoutputfile ) of
                                                        { ( !_semWrapperIpps) ->
                                                            (case (cataFun_ _cataFunOisDeclOfLet _cataFunOnested _cataFunOoptions _cataFunOoutputfile ) of
                                                             { ( !_cataFunIpps) ->
                                                                 (case (({-# LINE 487 "PrintCode.ag" #-}
                                                                         [ [_commentIpp]
                                                                         , _cataFunIpps
                                                                         , _semWrapperIpps
                                                                         ]
                                                                         {-# LINE 503 "PrintCode.hs" #-}
                                                                         )) of
                                                                  { !_lhsOappendMain ->
                                                                  (case (({-# LINE 39 "PrintCode.ag" #-}
                                                                          _outputfile
                                                                          {-# LINE 508 "PrintCode.hs" #-}
                                                                          )) of
                                                                   { !_semFunctionsOoutputfile ->
                                                                   (case (({-# LINE 49 "PrintCode.ag" #-}
                                                                           _lhsIoptions
                                                                           {-# LINE 513 "PrintCode.hs" #-}
                                                                           )) of
                                                                    { !_semFunctionsOoptions ->
                                                                    (case (({-# LINE 53 "PrintCode.ag" #-}
                                                                            _lhsInested
                                                                            {-# LINE 518 "PrintCode.hs" #-}
                                                                            )) of
                                                                     { !_semFunctionsOnested ->
                                                                     (case (({-# LINE 403 "PrintCode.ag" #-}
                                                                             _lhsIisDeclOfLet
                                                                             {-# LINE 523 "PrintCode.hs" #-}
                                                                             )) of
                                                                      { !_semFunctionsOisDeclOfLet ->
                                                                      (case (({-# LINE 39 "PrintCode.ag" #-}
                                                                              _outputfile
                                                                              {-# LINE 528 "PrintCode.hs" #-}
                                                                              )) of
                                                                       { !_infoOoutputfile ->
                                                                       (case (({-# LINE 49 "PrintCode.ag" #-}
                                                                               _lhsIoptions
                                                                               {-# LINE 533 "PrintCode.hs" #-}
                                                                               )) of
                                                                        { !_infoOoptions ->
                                                                        (case (({-# LINE 53 "PrintCode.ag" #-}
                                                                                _lhsInested
                                                                                {-# LINE 538 "PrintCode.hs" #-}
                                                                                )) of
                                                                         { !_infoOnested ->
                                                                         (case (({-# LINE 403 "PrintCode.ag" #-}
                                                                                 _lhsIisDeclOfLet
                                                                                 {-# LINE 543 "PrintCode.hs" #-}
                                                                                 )) of
                                                                          { !_infoOisDeclOfLet ->
                                                                          (case (({-# LINE 513 "PrintCode.ag" #-}
                                                                                  concat $ intersperse "," semNames_
                                                                                  {-# LINE 548 "PrintCode.hs" #-}
                                                                                  )) of
                                                                           { !_exports ->
                                                                           (case (semFunctions_ _semFunctionsOisDeclOfLet _semFunctionsOnested _semFunctionsOoptions _semFunctionsOoutputfile ) of
                                                                            { ( !_semFunctionsIpps) ->
                                                                                (case (info_ _infoOisDeclOfLet _infoOnested _infoOoptions _infoOoutputfile ) of
                                                                                 { ( !_infoIpps) ->
                                                                                     (case (({-# LINE 497 "PrintCode.ag" #-}
                                                                                             writeModule _outputfile
                                                                                               [ pp $ _lhsIpragmaBlocks
                                                                                               , pp $ Map.findWithDefault empty (BlockPragma, Just $ identifier name_) _lhsItextBlockMap
                                                                                               , pp $ _lhsIoptionsLine
                                                                                               , pp $ _lhsImoduleHeader _lhsImainName ("_" ++ name_) _exports     True
                                                                                               , pp $ ("import " ++ _lhsImainName ++ "_common\n")
                                                                                               , pp $ Map.findWithDefault empty (BlockImport, Just $ identifier name_) _lhsItextBlockMap
                                                                                               , _commentIpp
                                                                                               , vlist_sep "" _infoIpps
                                                                                               , vlist_sep "" _semFunctionsIpps
                                                                                               , Map.findWithDefault empty (BlockOther, Just $ identifier name_) _lhsItextBlockMap
                                                                                               ]
                                                                                             {-# LINE 568 "PrintCode.hs" #-}
                                                                                             )) of
                                                                                      { !_lhsOgenSems ->
                                                                                      (case (({-# LINE 476 "PrintCode.ag" #-}
                                                                                              ["import " ++ _lhsImainName ++ "_" ++ name_ ++ "\n"]
                                                                                              {-# LINE 573 "PrintCode.hs" #-}
                                                                                              )) of
                                                                                       { !_lhsOimports ->
                                                                                       (case (({-# LINE 96 "PrintCode.ag" #-}
                                                                                               _commentIpp
                                                                                               :  _infoIpps
                                                                                               ++ _dataDefIpps
                                                                                               ++ _cataFunIpps
                                                                                               ++ _semDomIpps
                                                                                               ++ _semWrapperIpps
                                                                                               ++ _semFunctionsIpps
                                                                                               ++ [Map.findWithDefault empty (BlockOther, Just $ identifier name_) _lhsItextBlockMap]
                                                                                               {-# LINE 585 "PrintCode.hs" #-}
                                                                                               )) of
                                                                                        { !_lhsOpps ->
                                                                                        ( _lhsOappendCommon,_lhsOappendMain,_lhsOgenSems,_lhsOimports,_lhsOpps) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) })) )
-- Chunks ------------------------------------------------------
{-
   visit 0:
      inherited attributes:
         importBlocks         : PP_Doc
         isDeclOfLet          : Bool
         mainFile             : String
         mainName             : String
         moduleHeader         : String -> String -> String -> Bool -> String
         nested               : Bool
         options              : Options
         optionsLine          : String
         pragmaBlocks         : String
         textBlockMap         : Map BlockInfo PP_Doc
         textBlocks           : PP_Doc
      synthesized attributes:
         appendCommon         : [[PP_Doc]]
         appendMain           : [[PP_Doc]]
         genSems              : IO ()
         imports              : [String]
         pps                  : PP_Docs
   alternatives:
      alternative Cons:
         child hd             : Chunk 
         child tl             : Chunks 
      alternative Nil:
-}
-- cata
sem_Chunks :: Chunks  ->
              T_Chunks 
sem_Chunks !list  =
    (Prelude.foldr sem_Chunks_Cons sem_Chunks_Nil (Prelude.map sem_Chunk list) )
-- semantic domain
newtype T_Chunks  = T_Chunks (PP_Doc ->
                              Bool ->
                              String ->
                              String ->
                              (String -> String -> String -> Bool -> String) ->
                              Bool ->
                              Options ->
                              String ->
                              String ->
                              (Map BlockInfo PP_Doc) ->
                              PP_Doc ->
                              ( ([[PP_Doc]]),([[PP_Doc]]),(IO ()),([String]),PP_Docs))
data Inh_Chunks  = Inh_Chunks {importBlocks_Inh_Chunks :: !(PP_Doc),isDeclOfLet_Inh_Chunks :: !(Bool),mainFile_Inh_Chunks :: !(String),mainName_Inh_Chunks :: !(String),moduleHeader_Inh_Chunks :: !((String -> String -> String -> Bool -> String)),nested_Inh_Chunks :: !(Bool),options_Inh_Chunks :: !(Options),optionsLine_Inh_Chunks :: !(String),pragmaBlocks_Inh_Chunks :: !(String),textBlockMap_Inh_Chunks :: !((Map BlockInfo PP_Doc)),textBlocks_Inh_Chunks :: !(PP_Doc)}
data Syn_Chunks  = Syn_Chunks {appendCommon_Syn_Chunks :: !(([[PP_Doc]])),appendMain_Syn_Chunks :: !(([[PP_Doc]])),genSems_Syn_Chunks :: !((IO ())),imports_Syn_Chunks :: !(([String])),pps_Syn_Chunks :: !(PP_Docs)}
wrap_Chunks :: T_Chunks  ->
               Inh_Chunks  ->
               Syn_Chunks 
wrap_Chunks !(T_Chunks sem ) !(Inh_Chunks _lhsIimportBlocks _lhsIisDeclOfLet _lhsImainFile _lhsImainName _lhsImoduleHeader _lhsInested _lhsIoptions _lhsIoptionsLine _lhsIpragmaBlocks _lhsItextBlockMap _lhsItextBlocks )  =
    (let ( !_lhsOappendCommon,!_lhsOappendMain,!_lhsOgenSems,!_lhsOimports,!_lhsOpps) = sem _lhsIimportBlocks _lhsIisDeclOfLet _lhsImainFile _lhsImainName _lhsImoduleHeader _lhsInested _lhsIoptions _lhsIoptionsLine _lhsIpragmaBlocks _lhsItextBlockMap _lhsItextBlocks 
     in  (Syn_Chunks _lhsOappendCommon _lhsOappendMain _lhsOgenSems _lhsOimports _lhsOpps ))
sem_Chunks_Cons :: T_Chunk  ->
                   T_Chunks  ->
                   T_Chunks 
sem_Chunks_Cons !(T_Chunk hd_ ) !(T_Chunks tl_ )  =
    (T_Chunks (\ (!_lhsIimportBlocks)
                 (!_lhsIisDeclOfLet)
                 (!_lhsImainFile)
                 (!_lhsImainName)
                 (!_lhsImoduleHeader)
                 (!_lhsInested)
                 (!_lhsIoptions)
                 (!_lhsIoptionsLine)
                 (!_lhsIpragmaBlocks)
                 (!_lhsItextBlockMap)
                 (!_lhsItextBlocks) ->
                   (case (({-# LINE 49 "PrintCode.ag" #-}
                           _lhsIoptions
                           {-# LINE 659 "PrintCode.hs" #-}
                           )) of
                    { !_tlOoptions ->
                    (case (({-# LINE 53 "PrintCode.ag" #-}
                            _lhsInested
                            {-# LINE 664 "PrintCode.hs" #-}
                            )) of
                     { !_tlOnested ->
                     (case (({-# LINE 433 "PrintCode.ag" #-}
                             _lhsImainFile
                             {-# LINE 669 "PrintCode.hs" #-}
                             )) of
                      { !_tlOmainFile ->
                      (case (({-# LINE 403 "PrintCode.ag" #-}
                              _lhsIisDeclOfLet
                              {-# LINE 674 "PrintCode.hs" #-}
                              )) of
                       { !_tlOisDeclOfLet ->
                       (case (({-# LINE 49 "PrintCode.ag" #-}
                               _lhsIoptions
                               {-# LINE 679 "PrintCode.hs" #-}
                               )) of
                        { !_hdOoptions ->
                        (case (({-# LINE 53 "PrintCode.ag" #-}
                                _lhsInested
                                {-# LINE 684 "PrintCode.hs" #-}
                                )) of
                         { !_hdOnested ->
                         (case (({-# LINE 433 "PrintCode.ag" #-}
                                 _lhsImainFile
                                 {-# LINE 689 "PrintCode.hs" #-}
                                 )) of
                          { !_hdOmainFile ->
                          (case (({-# LINE 403 "PrintCode.ag" #-}
                                  _lhsIisDeclOfLet
                                  {-# LINE 694 "PrintCode.hs" #-}
                                  )) of
                           { !_hdOisDeclOfLet ->
                           (case (({-# LINE 430 "PrintCode.ag" #-}
                                   _lhsItextBlocks
                                   {-# LINE 699 "PrintCode.hs" #-}
                                   )) of
                            { !_tlOtextBlocks ->
                            (case (({-# LINE 431 "PrintCode.ag" #-}
                                    _lhsItextBlockMap
                                    {-# LINE 704 "PrintCode.hs" #-}
                                    )) of
                             { !_tlOtextBlockMap ->
                             (case (({-# LINE 429 "PrintCode.ag" #-}
                                     _lhsIpragmaBlocks
                                     {-# LINE 709 "PrintCode.hs" #-}
                                     )) of
                              { !_tlOpragmaBlocks ->
                              (case (({-# LINE 432 "PrintCode.ag" #-}
                                      _lhsIoptionsLine
                                      {-# LINE 714 "PrintCode.hs" #-}
                                      )) of
                               { !_tlOoptionsLine ->
                               (case (({-# LINE 435 "PrintCode.ag" #-}
                                       _lhsImoduleHeader
                                       {-# LINE 719 "PrintCode.hs" #-}
                                       )) of
                                { !_tlOmoduleHeader ->
                                (case (({-# LINE 434 "PrintCode.ag" #-}
                                        _lhsImainName
                                        {-# LINE 724 "PrintCode.hs" #-}
                                        )) of
                                 { !_tlOmainName ->
                                 (case (({-# LINE 428 "PrintCode.ag" #-}
                                         _lhsIimportBlocks
                                         {-# LINE 729 "PrintCode.hs" #-}
                                         )) of
                                  { !_tlOimportBlocks ->
                                  (case (tl_ _tlOimportBlocks _tlOisDeclOfLet _tlOmainFile _tlOmainName _tlOmoduleHeader _tlOnested _tlOoptions _tlOoptionsLine _tlOpragmaBlocks _tlOtextBlockMap _tlOtextBlocks ) of
                                   { ( !_tlIappendCommon,!_tlIappendMain,!_tlIgenSems,!_tlIimports,!_tlIpps) ->
                                       (case (({-# LINE 430 "PrintCode.ag" #-}
                                               _lhsItextBlocks
                                               {-# LINE 736 "PrintCode.hs" #-}
                                               )) of
                                        { !_hdOtextBlocks ->
                                        (case (({-# LINE 431 "PrintCode.ag" #-}
                                                _lhsItextBlockMap
                                                {-# LINE 741 "PrintCode.hs" #-}
                                                )) of
                                         { !_hdOtextBlockMap ->
                                         (case (({-# LINE 429 "PrintCode.ag" #-}
                                                 _lhsIpragmaBlocks
                                                 {-# LINE 746 "PrintCode.hs" #-}
                                                 )) of
                                          { !_hdOpragmaBlocks ->
                                          (case (({-# LINE 432 "PrintCode.ag" #-}
                                                  _lhsIoptionsLine
                                                  {-# LINE 751 "PrintCode.hs" #-}
                                                  )) of
                                           { !_hdOoptionsLine ->
                                           (case (({-# LINE 435 "PrintCode.ag" #-}
                                                   _lhsImoduleHeader
                                                   {-# LINE 756 "PrintCode.hs" #-}
                                                   )) of
                                            { !_hdOmoduleHeader ->
                                            (case (({-# LINE 434 "PrintCode.ag" #-}
                                                    _lhsImainName
                                                    {-# LINE 761 "PrintCode.hs" #-}
                                                    )) of
                                             { !_hdOmainName ->
                                             (case (({-# LINE 428 "PrintCode.ag" #-}
                                                     _lhsIimportBlocks
                                                     {-# LINE 766 "PrintCode.hs" #-}
                                                     )) of
                                              { !_hdOimportBlocks ->
                                              (case (hd_ _hdOimportBlocks _hdOisDeclOfLet _hdOmainFile _hdOmainName _hdOmoduleHeader _hdOnested _hdOoptions _hdOoptionsLine _hdOpragmaBlocks _hdOtextBlockMap _hdOtextBlocks ) of
                                               { ( !_hdIappendCommon,!_hdIappendMain,!_hdIgenSems,!_hdIimports,!_hdIpps) ->
                                                   (case (({-# LINE 478 "PrintCode.ag" #-}
                                                           _hdIappendCommon ++ _tlIappendCommon
                                                           {-# LINE 773 "PrintCode.hs" #-}
                                                           )) of
                                                    { !_lhsOappendCommon ->
                                                    (case (({-# LINE 478 "PrintCode.ag" #-}
                                                            _hdIappendMain ++ _tlIappendMain
                                                            {-# LINE 778 "PrintCode.hs" #-}
                                                            )) of
                                                     { !_lhsOappendMain ->
                                                     (case (({-# LINE 493 "PrintCode.ag" #-}
                                                             _hdIgenSems >> _tlIgenSems
                                                             {-# LINE 783 "PrintCode.hs" #-}
                                                             )) of
                                                      { !_lhsOgenSems ->
                                                      (case (({-# LINE 473 "PrintCode.ag" #-}
                                                              _hdIimports ++ _tlIimports
                                                              {-# LINE 788 "PrintCode.hs" #-}
                                                              )) of
                                                       { !_lhsOimports ->
                                                       (case (({-# LINE 88 "PrintCode.ag" #-}
                                                               _hdIpps ++ _tlIpps
                                                               {-# LINE 793 "PrintCode.hs" #-}
                                                               )) of
                                                        { !_lhsOpps ->
                                                        ( _lhsOappendCommon,_lhsOappendMain,_lhsOgenSems,_lhsOimports,_lhsOpps) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) })) )
sem_Chunks_Nil :: T_Chunks 
sem_Chunks_Nil  =
    (T_Chunks (\ (!_lhsIimportBlocks)
                 (!_lhsIisDeclOfLet)
                 (!_lhsImainFile)
                 (!_lhsImainName)
                 (!_lhsImoduleHeader)
                 (!_lhsInested)
                 (!_lhsIoptions)
                 (!_lhsIoptionsLine)
                 (!_lhsIpragmaBlocks)
                 (!_lhsItextBlockMap)
                 (!_lhsItextBlocks) ->
                   (case (({-# LINE 478 "PrintCode.ag" #-}
                           []
                           {-# LINE 812 "PrintCode.hs" #-}
                           )) of
                    { !_lhsOappendCommon ->
                    (case (({-# LINE 478 "PrintCode.ag" #-}
                            []
                            {-# LINE 817 "PrintCode.hs" #-}
                            )) of
                     { !_lhsOappendMain ->
                     (case (({-# LINE 493 "PrintCode.ag" #-}
                             return ()
                             {-# LINE 822 "PrintCode.hs" #-}
                             )) of
                      { !_lhsOgenSems ->
                      (case (({-# LINE 473 "PrintCode.ag" #-}
                              []
                              {-# LINE 827 "PrintCode.hs" #-}
                              )) of
                       { !_lhsOimports ->
                       (case (({-# LINE 89 "PrintCode.ag" #-}
                               []
                               {-# LINE 832 "PrintCode.hs" #-}
                               )) of
                        { !_lhsOpps ->
                        ( _lhsOappendCommon,_lhsOappendMain,_lhsOgenSems,_lhsOimports,_lhsOpps) }) }) }) }) })) )
-- DataAlt -----------------------------------------------------
{-
   visit 0:
      inherited attributes:
         nested               : Bool
         strictPre            : PP_Doc
      synthesized attribute:
         pp                   : PP_Doc
   alternatives:
      alternative DataAlt:
         child name           : {String}
         child args           : Types 
      alternative Record:
         child name           : {String}
         child args           : NamedTypes 
-}
-- cata
sem_DataAlt :: DataAlt  ->
               T_DataAlt 
sem_DataAlt !(DataAlt _name _args )  =
    (sem_DataAlt_DataAlt _name (sem_Types _args ) )
sem_DataAlt !(Record _name _args )  =
    (sem_DataAlt_Record _name (sem_NamedTypes _args ) )
-- semantic domain
newtype T_DataAlt  = T_DataAlt (Bool ->
                                PP_Doc ->
                                ( PP_Doc))
data Inh_DataAlt  = Inh_DataAlt {nested_Inh_DataAlt :: !(Bool),strictPre_Inh_DataAlt :: !(PP_Doc)}
data Syn_DataAlt  = Syn_DataAlt {pp_Syn_DataAlt :: !(PP_Doc)}
wrap_DataAlt :: T_DataAlt  ->
                Inh_DataAlt  ->
                Syn_DataAlt 
wrap_DataAlt !(T_DataAlt sem ) !(Inh_DataAlt _lhsInested _lhsIstrictPre )  =
    (let ( !_lhsOpp) = sem _lhsInested _lhsIstrictPre 
     in  (Syn_DataAlt _lhsOpp ))
sem_DataAlt_DataAlt :: String ->
                       T_Types  ->
                       T_DataAlt 
sem_DataAlt_DataAlt !name_ !(T_Types args_ )  =
    (T_DataAlt (\ (!_lhsInested)
                  (!_lhsIstrictPre) ->
                    (case (({-# LINE 53 "PrintCode.ag" #-}
                            _lhsInested
                            {-# LINE 879 "PrintCode.hs" #-}
                            )) of
                     { !_argsOnested ->
                     (case (args_ _argsOnested ) of
                      { ( !_argsIpps) ->
                          (case (({-# LINE 221 "PrintCode.ag" #-}
                                  name_ >#< hv_sp (map ((_lhsIstrictPre >|<) . pp_parens) _argsIpps)
                                  {-# LINE 886 "PrintCode.hs" #-}
                                  )) of
                           { !_lhsOpp ->
                           ( _lhsOpp) }) }) })) )
sem_DataAlt_Record :: String ->
                      T_NamedTypes  ->
                      T_DataAlt 
sem_DataAlt_Record !name_ !(T_NamedTypes args_ )  =
    (T_DataAlt (\ (!_lhsInested)
                  (!_lhsIstrictPre) ->
                    (case (({-# LINE 53 "PrintCode.ag" #-}
                            _lhsInested
                            {-# LINE 898 "PrintCode.hs" #-}
                            )) of
                     { !_argsOnested ->
                     (case (args_ _argsOnested ) of
                      { ( !_argsIpps) ->
                          (case (({-# LINE 222 "PrintCode.ag" #-}
                                  name_ >#< pp_block "{" "}" "," _argsIpps
                                  {-# LINE 905 "PrintCode.hs" #-}
                                  )) of
                           { !_lhsOpp ->
                           ( _lhsOpp) }) }) })) )
-- DataAlts ----------------------------------------------------
{-
   visit 0:
      inherited attributes:
         nested               : Bool
         strictPre            : PP_Doc
      synthesized attribute:
         pps                  : PP_Docs
   alternatives:
      alternative Cons:
         child hd             : DataAlt 
         child tl             : DataAlts 
      alternative Nil:
-}
-- cata
sem_DataAlts :: DataAlts  ->
                T_DataAlts 
sem_DataAlts !list  =
    (Prelude.foldr sem_DataAlts_Cons sem_DataAlts_Nil (Prelude.map sem_DataAlt list) )
-- semantic domain
newtype T_DataAlts  = T_DataAlts (Bool ->
                                  PP_Doc ->
                                  ( PP_Docs))
data Inh_DataAlts  = Inh_DataAlts {nested_Inh_DataAlts :: !(Bool),strictPre_Inh_DataAlts :: !(PP_Doc)}
data Syn_DataAlts  = Syn_DataAlts {pps_Syn_DataAlts :: !(PP_Docs)}
wrap_DataAlts :: T_DataAlts  ->
                 Inh_DataAlts  ->
                 Syn_DataAlts 
wrap_DataAlts !(T_DataAlts sem ) !(Inh_DataAlts _lhsInested _lhsIstrictPre )  =
    (let ( !_lhsOpps) = sem _lhsInested _lhsIstrictPre 
     in  (Syn_DataAlts _lhsOpps ))
sem_DataAlts_Cons :: T_DataAlt  ->
                     T_DataAlts  ->
                     T_DataAlts 
sem_DataAlts_Cons !(T_DataAlt hd_ ) !(T_DataAlts tl_ )  =
    (T_DataAlts (\ (!_lhsInested)
                   (!_lhsIstrictPre) ->
                     (case (({-# LINE 313 "PrintCode.ag" #-}
                             _lhsIstrictPre
                             {-# LINE 948 "PrintCode.hs" #-}
                             )) of
                      { !_tlOstrictPre ->
                      (case (({-# LINE 53 "PrintCode.ag" #-}
                              _lhsInested
                              {-# LINE 953 "PrintCode.hs" #-}
                              )) of
                       { !_tlOnested ->
                       (case (({-# LINE 313 "PrintCode.ag" #-}
                               _lhsIstrictPre
                               {-# LINE 958 "PrintCode.hs" #-}
                               )) of
                        { !_hdOstrictPre ->
                        (case (({-# LINE 51 "PrintCode.ag" #-}
                                _lhsInested
                                {-# LINE 963 "PrintCode.hs" #-}
                                )) of
                         { !_hdOnested ->
                         (case (tl_ _tlOnested _tlOstrictPre ) of
                          { ( !_tlIpps) ->
                              (case (hd_ _hdOnested _hdOstrictPre ) of
                               { ( !_hdIpp) ->
                                   (case (({-# LINE 72 "PrintCode.ag" #-}
                                           _hdIpp : _tlIpps
                                           {-# LINE 972 "PrintCode.hs" #-}
                                           )) of
                                    { !_lhsOpps ->
                                    ( _lhsOpps) }) }) }) }) }) }) })) )
sem_DataAlts_Nil :: T_DataAlts 
sem_DataAlts_Nil  =
    (T_DataAlts (\ (!_lhsInested)
                   (!_lhsIstrictPre) ->
                     (case (({-# LINE 73 "PrintCode.ag" #-}
                             []
                             {-# LINE 982 "PrintCode.hs" #-}
                             )) of
                      { !_lhsOpps ->
                      ( _lhsOpps) })) )
-- Decl --------------------------------------------------------
{-
   visit 0:
      inherited attributes:
         isDeclOfLet          : Bool
         nested               : Bool
         options              : Options
         outputfile           : String
      synthesized attribute:
         pp                   : PP_Doc
   alternatives:
      alternative Bind:
         child left           : Lhs 
         child rhs            : Expr 
      alternative BindLet:
         child left           : Lhs 
         child rhs            : Expr 
      alternative Comment:
         child txt            : {String}
      alternative Data:
         child name           : {String}
         child params         : {[String]}
         child alts           : DataAlts 
         child strict         : {Bool}
         child derivings      : {[String]}
      alternative Decl:
         child left           : Lhs 
         child rhs            : Expr 
         child binds          : {Set String}
         child uses           : {Set String}
      alternative EvalDecl:
         child nt             : {String}
         child left           : Lhs 
         child rhs            : Expr 
         visit 0:
            local strat       : _
      alternative NewType:
         child name           : {String}
         child params         : {[String]}
         child con            : {String}
         child tp             : Type 
      alternative PragmaDecl:
         child txt            : {String}
      alternative Resume:
         child monadic        : {Bool}
         child nt             : {String}
         child left           : Lhs 
         child rhs            : Expr 
      alternative TSig:
         child name           : {String}
         child tp             : Type 
      alternative Type:
         child name           : {String}
         child params         : {[String]}
         child tp             : Type 
-}
-- cata
sem_Decl :: Decl  ->
            T_Decl 
sem_Decl !(Bind _left _rhs )  =
    (sem_Decl_Bind (sem_Lhs _left ) (sem_Expr _rhs ) )
sem_Decl !(BindLet _left _rhs )  =
    (sem_Decl_BindLet (sem_Lhs _left ) (sem_Expr _rhs ) )
sem_Decl !(Comment _txt )  =
    (sem_Decl_Comment _txt )
sem_Decl !(Data _name _params _alts _strict _derivings )  =
    (sem_Decl_Data _name _params (sem_DataAlts _alts ) _strict _derivings )
sem_Decl !(Decl _left _rhs _binds _uses )  =
    (sem_Decl_Decl (sem_Lhs _left ) (sem_Expr _rhs ) _binds _uses )
sem_Decl !(EvalDecl _nt _left _rhs )  =
    (sem_Decl_EvalDecl _nt (sem_Lhs _left ) (sem_Expr _rhs ) )
sem_Decl !(NewType _name _params _con _tp )  =
    (sem_Decl_NewType _name _params _con (sem_Type _tp ) )
sem_Decl !(PragmaDecl _txt )  =
    (sem_Decl_PragmaDecl _txt )
sem_Decl !(Resume _monadic _nt _left _rhs )  =
    (sem_Decl_Resume _monadic _nt (sem_Lhs _left ) (sem_Expr _rhs ) )
sem_Decl !(TSig _name _tp )  =
    (sem_Decl_TSig _name (sem_Type _tp ) )
sem_Decl !(Type _name _params _tp )  =
    (sem_Decl_Type _name _params (sem_Type _tp ) )
-- semantic domain
newtype T_Decl  = T_Decl (Bool ->
                          Bool ->
                          Options ->
                          String ->
                          ( PP_Doc))
data Inh_Decl  = Inh_Decl {isDeclOfLet_Inh_Decl :: !(Bool),nested_Inh_Decl :: !(Bool),options_Inh_Decl :: !(Options),outputfile_Inh_Decl :: !(String)}
data Syn_Decl  = Syn_Decl {pp_Syn_Decl :: !(PP_Doc)}
wrap_Decl :: T_Decl  ->
             Inh_Decl  ->
             Syn_Decl 
wrap_Decl !(T_Decl sem ) !(Inh_Decl _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile )  =
    (let ( !_lhsOpp) = sem _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile 
     in  (Syn_Decl _lhsOpp ))
sem_Decl_Bind :: T_Lhs  ->
                 T_Expr  ->
                 T_Decl 
sem_Decl_Bind !(T_Lhs left_ ) !(T_Expr rhs_ )  =
    (T_Decl (\ (!_lhsIisDeclOfLet)
               (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 39 "PrintCode.ag" #-}
                         _lhsIoutputfile
                         {-# LINE 1091 "PrintCode.hs" #-}
                         )) of
                  { !_rhsOoutputfile ->
                  (case (({-# LINE 49 "PrintCode.ag" #-}
                          _lhsIoptions
                          {-# LINE 1096 "PrintCode.hs" #-}
                          )) of
                   { !_rhsOoptions ->
                   (case (({-# LINE 51 "PrintCode.ag" #-}
                           _lhsInested
                           {-# LINE 1101 "PrintCode.hs" #-}
                           )) of
                    { !_rhsOnested ->
                    (case (({-# LINE 39 "PrintCode.ag" #-}
                            _lhsIoutputfile
                            {-# LINE 1106 "PrintCode.hs" #-}
                            )) of
                     { !_leftOoutputfile ->
                     (case (({-# LINE 49 "PrintCode.ag" #-}
                             _lhsIoptions
                             {-# LINE 1111 "PrintCode.hs" #-}
                             )) of
                      { !_leftOoptions ->
                      (case (({-# LINE 51 "PrintCode.ag" #-}
                              _lhsInested
                              {-# LINE 1116 "PrintCode.hs" #-}
                              )) of
                       { !_leftOnested ->
                       (case (({-# LINE 403 "PrintCode.ag" #-}
                               _lhsIisDeclOfLet
                               {-# LINE 1121 "PrintCode.hs" #-}
                               )) of
                        { !_leftOisDeclOfLet ->
                        (case (rhs_ _rhsOnested _rhsOoptions _rhsOoutputfile ) of
                         { ( !_rhsIpp) ->
                             (case (left_ _leftOisDeclOfLet _leftOnested _leftOoptions _leftOoutputfile ) of
                              { ( !_leftIpp) ->
                                  (case (({-# LINE 108 "PrintCode.ag" #-}
                                          _leftIpp >#< "<-" >#< _rhsIpp
                                          {-# LINE 1130 "PrintCode.hs" #-}
                                          )) of
                                   { !_lhsOpp ->
                                   ( _lhsOpp) }) }) }) }) }) }) }) }) }) })) )
sem_Decl_BindLet :: T_Lhs  ->
                    T_Expr  ->
                    T_Decl 
sem_Decl_BindLet !(T_Lhs left_ ) !(T_Expr rhs_ )  =
    (T_Decl (\ (!_lhsIisDeclOfLet)
               (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 39 "PrintCode.ag" #-}
                         _lhsIoutputfile
                         {-# LINE 1144 "PrintCode.hs" #-}
                         )) of
                  { !_rhsOoutputfile ->
                  (case (({-# LINE 49 "PrintCode.ag" #-}
                          _lhsIoptions
                          {-# LINE 1149 "PrintCode.hs" #-}
                          )) of
                   { !_rhsOoptions ->
                   (case (({-# LINE 51 "PrintCode.ag" #-}
                           _lhsInested
                           {-# LINE 1154 "PrintCode.hs" #-}
                           )) of
                    { !_rhsOnested ->
                    (case (({-# LINE 39 "PrintCode.ag" #-}
                            _lhsIoutputfile
                            {-# LINE 1159 "PrintCode.hs" #-}
                            )) of
                     { !_leftOoutputfile ->
                     (case (({-# LINE 49 "PrintCode.ag" #-}
                             _lhsIoptions
                             {-# LINE 1164 "PrintCode.hs" #-}
                             )) of
                      { !_leftOoptions ->
                      (case (({-# LINE 51 "PrintCode.ag" #-}
                              _lhsInested
                              {-# LINE 1169 "PrintCode.hs" #-}
                              )) of
                       { !_leftOnested ->
                       (case (({-# LINE 403 "PrintCode.ag" #-}
                               _lhsIisDeclOfLet
                               {-# LINE 1174 "PrintCode.hs" #-}
                               )) of
                        { !_leftOisDeclOfLet ->
                        (case (rhs_ _rhsOnested _rhsOoptions _rhsOoutputfile ) of
                         { ( !_rhsIpp) ->
                             (case (left_ _leftOisDeclOfLet _leftOnested _leftOoptions _leftOoutputfile ) of
                              { ( !_leftIpp) ->
                                  (case (({-# LINE 109 "PrintCode.ag" #-}
                                          "let" >#< _leftIpp >#< "=" >#< _rhsIpp
                                          {-# LINE 1183 "PrintCode.hs" #-}
                                          )) of
                                   { !_lhsOpp ->
                                   ( _lhsOpp) }) }) }) }) }) }) }) }) }) })) )
sem_Decl_Comment :: String ->
                    T_Decl 
sem_Decl_Comment !txt_  =
    (T_Decl (\ (!_lhsIisDeclOfLet)
               (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 122 "PrintCode.ag" #-}
                         if '\n' `elem` txt_
                           then "{-" >-< vlist (lines txt_) >-< "-}"
                           else "--" >#< txt_
                         {-# LINE 1198 "PrintCode.hs" #-}
                         )) of
                  { !_lhsOpp ->
                  ( _lhsOpp) })) )
sem_Decl_Data :: String ->
                 ([String]) ->
                 T_DataAlts  ->
                 Bool ->
                 ([String]) ->
                 T_Decl 
sem_Decl_Data !name_ !params_ !(T_DataAlts alts_ ) !strict_ !derivings_  =
    (T_Decl (\ (!_lhsIisDeclOfLet)
               (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 53 "PrintCode.ag" #-}
                         _lhsInested
                         {-# LINE 1215 "PrintCode.hs" #-}
                         )) of
                  { !_altsOnested ->
                  (case (({-# LINE 316 "PrintCode.ag" #-}
                          if strict_ then pp "!" else empty
                          {-# LINE 1220 "PrintCode.hs" #-}
                          )) of
                   { !_altsOstrictPre ->
                   (case (alts_ _altsOnested _altsOstrictPre ) of
                    { ( !_altsIpps) ->
                        (case (({-# LINE 110 "PrintCode.ag" #-}
                                "data" >#< hv_sp (name_ : params_)
                                >#<  ( case _altsIpps of
                                             [] -> empty
                                             (x:xs) ->              "=" >#<  x
                                                    >-< vlist (map ("|" >#<) xs)
                                        >-< if null derivings_
                                               then empty
                                               else "deriving" >#< ppTuple False (map text derivings_)
                                     )
                                {-# LINE 1235 "PrintCode.hs" #-}
                                )) of
                         { !_lhsOpp ->
                         ( _lhsOpp) }) }) }) })) )
sem_Decl_Decl :: T_Lhs  ->
                 T_Expr  ->
                 (Set String) ->
                 (Set String) ->
                 T_Decl 
sem_Decl_Decl !(T_Lhs left_ ) !(T_Expr rhs_ ) !binds_ !uses_  =
    (T_Decl (\ (!_lhsIisDeclOfLet)
               (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 39 "PrintCode.ag" #-}
                         _lhsIoutputfile
                         {-# LINE 1251 "PrintCode.hs" #-}
                         )) of
                  { !_rhsOoutputfile ->
                  (case (({-# LINE 49 "PrintCode.ag" #-}
                          _lhsIoptions
                          {-# LINE 1256 "PrintCode.hs" #-}
                          )) of
                   { !_rhsOoptions ->
                   (case (({-# LINE 51 "PrintCode.ag" #-}
                           _lhsInested
                           {-# LINE 1261 "PrintCode.hs" #-}
                           )) of
                    { !_rhsOnested ->
                    (case (({-# LINE 39 "PrintCode.ag" #-}
                            _lhsIoutputfile
                            {-# LINE 1266 "PrintCode.hs" #-}
                            )) of
                     { !_leftOoutputfile ->
                     (case (({-# LINE 49 "PrintCode.ag" #-}
                             _lhsIoptions
                             {-# LINE 1271 "PrintCode.hs" #-}
                             )) of
                      { !_leftOoptions ->
                      (case (({-# LINE 51 "PrintCode.ag" #-}
                              _lhsInested
                              {-# LINE 1276 "PrintCode.hs" #-}
                              )) of
                       { !_leftOnested ->
                       (case (({-# LINE 403 "PrintCode.ag" #-}
                               _lhsIisDeclOfLet
                               {-# LINE 1281 "PrintCode.hs" #-}
                               )) of
                        { !_leftOisDeclOfLet ->
                        (case (rhs_ _rhsOnested _rhsOoptions _rhsOoutputfile ) of
                         { ( !_rhsIpp) ->
                             (case (left_ _leftOisDeclOfLet _leftOnested _leftOoptions _leftOoutputfile ) of
                              { ( !_leftIpp) ->
                                  (case (({-# LINE 106 "PrintCode.ag" #-}
                                          _leftIpp >#< "="
                                          >-< indent 4 _rhsIpp
                                          {-# LINE 1291 "PrintCode.hs" #-}
                                          )) of
                                   { !_lhsOpp ->
                                   ( _lhsOpp) }) }) }) }) }) }) }) }) }) })) )
sem_Decl_EvalDecl :: String ->
                     T_Lhs  ->
                     T_Expr  ->
                     T_Decl 
sem_Decl_EvalDecl !nt_ !(T_Lhs left_ ) !(T_Expr rhs_ )  =
    (T_Decl (\ (!_lhsIisDeclOfLet)
               (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 39 "PrintCode.ag" #-}
                         _lhsIoutputfile
                         {-# LINE 1306 "PrintCode.hs" #-}
                         )) of
                  { !_rhsOoutputfile ->
                  (case (({-# LINE 49 "PrintCode.ag" #-}
                          _lhsIoptions
                          {-# LINE 1311 "PrintCode.hs" #-}
                          )) of
                   { !_rhsOoptions ->
                   (case (({-# LINE 51 "PrintCode.ag" #-}
                           _lhsInested
                           {-# LINE 1316 "PrintCode.hs" #-}
                           )) of
                    { !_rhsOnested ->
                    (case (({-# LINE 39 "PrintCode.ag" #-}
                            _lhsIoutputfile
                            {-# LINE 1321 "PrintCode.hs" #-}
                            )) of
                     { !_leftOoutputfile ->
                     (case (({-# LINE 49 "PrintCode.ag" #-}
                             _lhsIoptions
                             {-# LINE 1326 "PrintCode.hs" #-}
                             )) of
                      { !_leftOoptions ->
                      (case (({-# LINE 51 "PrintCode.ag" #-}
                              _lhsInested
                              {-# LINE 1331 "PrintCode.hs" #-}
                              )) of
                       { !_leftOnested ->
                       (case (({-# LINE 403 "PrintCode.ag" #-}
                               _lhsIisDeclOfLet
                               {-# LINE 1336 "PrintCode.hs" #-}
                               )) of
                        { !_leftOisDeclOfLet ->
                        (case (({-# LINE 129 "PrintCode.ag" #-}
                                if breadthFirstStrict _lhsIoptions
                                then "stepwiseEval"
                                else "lazyEval"
                                {-# LINE 1343 "PrintCode.hs" #-}
                                )) of
                         { !_strat ->
                         (case (rhs_ _rhsOnested _rhsOoptions _rhsOoutputfile ) of
                          { ( !_rhsIpp) ->
                              (case (left_ _leftOisDeclOfLet _leftOnested _leftOoptions _leftOoutputfile ) of
                               { ( !_leftIpp) ->
                                   (case (({-# LINE 132 "PrintCode.ag" #-}
                                           if breadthFirst _lhsIoptions
                                           then _leftIpp >#< "=" >#< "case" >#< _strat     >#< pp_parens _rhsIpp >#< "of"
                                                >-< indent 4 (
                                                  pp_parens (nt_ >|< "_Syn" >#< "_val") >#< "-> _val"
                                                )
                                           else _leftIpp >#< "=" >#< _rhsIpp
                                           {-# LINE 1357 "PrintCode.hs" #-}
                                           )) of
                                    { !_lhsOpp ->
                                    ( _lhsOpp) }) }) }) }) }) }) }) }) }) }) })) )
sem_Decl_NewType :: String ->
                    ([String]) ->
                    String ->
                    T_Type  ->
                    T_Decl 
sem_Decl_NewType !name_ !params_ !con_ !(T_Type tp_ )  =
    (T_Decl (\ (!_lhsIisDeclOfLet)
               (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 51 "PrintCode.ag" #-}
                         _lhsInested
                         {-# LINE 1373 "PrintCode.hs" #-}
                         )) of
                  { !_tpOnested ->
                  (case (tp_ _tpOnested ) of
                   { ( !_tpIpp,!_tpIprec) ->
                       (case (({-# LINE 119 "PrintCode.ag" #-}
                               "newtype" >#< hv_sp (name_ : params_) >#< "=" >#< con_ >#< pp_parens _tpIpp
                               {-# LINE 1380 "PrintCode.hs" #-}
                               )) of
                        { !_lhsOpp ->
                        ( _lhsOpp) }) }) })) )
sem_Decl_PragmaDecl :: String ->
                       T_Decl 
sem_Decl_PragmaDecl !txt_  =
    (T_Decl (\ (!_lhsIisDeclOfLet)
               (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 125 "PrintCode.ag" #-}
                         "{-#" >#< text txt_ >#< "#-}"
                         {-# LINE 1393 "PrintCode.hs" #-}
                         )) of
                  { !_lhsOpp ->
                  ( _lhsOpp) })) )
sem_Decl_Resume :: Bool ->
                   String ->
                   T_Lhs  ->
                   T_Expr  ->
                   T_Decl 
sem_Decl_Resume !monadic_ !nt_ !(T_Lhs left_ ) !(T_Expr rhs_ )  =
    (T_Decl (\ (!_lhsIisDeclOfLet)
               (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 39 "PrintCode.ag" #-}
                         _lhsIoutputfile
                         {-# LINE 1409 "PrintCode.hs" #-}
                         )) of
                  { !_rhsOoutputfile ->
                  (case (({-# LINE 49 "PrintCode.ag" #-}
                          _lhsIoptions
                          {-# LINE 1414 "PrintCode.hs" #-}
                          )) of
                   { !_rhsOoptions ->
                   (case (({-# LINE 51 "PrintCode.ag" #-}
                           _lhsInested
                           {-# LINE 1419 "PrintCode.hs" #-}
                           )) of
                    { !_rhsOnested ->
                    (case (({-# LINE 39 "PrintCode.ag" #-}
                            _lhsIoutputfile
                            {-# LINE 1424 "PrintCode.hs" #-}
                            )) of
                     { !_leftOoutputfile ->
                     (case (({-# LINE 49 "PrintCode.ag" #-}
                             _lhsIoptions
                             {-# LINE 1429 "PrintCode.hs" #-}
                             )) of
                      { !_leftOoptions ->
                      (case (({-# LINE 51 "PrintCode.ag" #-}
                              _lhsInested
                              {-# LINE 1434 "PrintCode.hs" #-}
                              )) of
                       { !_leftOnested ->
                       (case (({-# LINE 403 "PrintCode.ag" #-}
                               _lhsIisDeclOfLet
                               {-# LINE 1439 "PrintCode.hs" #-}
                               )) of
                        { !_leftOisDeclOfLet ->
                        (case (rhs_ _rhsOnested _rhsOoptions _rhsOoutputfile ) of
                         { ( !_rhsIpp) ->
                             (case (left_ _leftOisDeclOfLet _leftOnested _leftOoptions _leftOoutputfile ) of
                              { ( !_leftIpp) ->
                                  (case (({-# LINE 126 "PrintCode.ag" #-}
                                          if monadic_
                                          then _leftIpp >#< "<-" >#< _rhsIpp
                                          else _leftIpp >#< "=" >-< indent 4 _rhsIpp
                                          {-# LINE 1450 "PrintCode.hs" #-}
                                          )) of
                                   { !_lhsOpp ->
                                   ( _lhsOpp) }) }) }) }) }) }) }) }) }) })) )
sem_Decl_TSig :: String ->
                 T_Type  ->
                 T_Decl 
sem_Decl_TSig !name_ !(T_Type tp_ )  =
    (T_Decl (\ (!_lhsIisDeclOfLet)
               (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 51 "PrintCode.ag" #-}
                         _lhsInested
                         {-# LINE 1464 "PrintCode.hs" #-}
                         )) of
                  { !_tpOnested ->
                  (case (tp_ _tpOnested ) of
                   { ( !_tpIpp,!_tpIprec) ->
                       (case (({-# LINE 121 "PrintCode.ag" #-}
                               name_ >#< "::" >#< _tpIpp
                               {-# LINE 1471 "PrintCode.hs" #-}
                               )) of
                        { !_lhsOpp ->
                        ( _lhsOpp) }) }) })) )
sem_Decl_Type :: String ->
                 ([String]) ->
                 T_Type  ->
                 T_Decl 
sem_Decl_Type !name_ !params_ !(T_Type tp_ )  =
    (T_Decl (\ (!_lhsIisDeclOfLet)
               (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 51 "PrintCode.ag" #-}
                         _lhsInested
                         {-# LINE 1486 "PrintCode.hs" #-}
                         )) of
                  { !_tpOnested ->
                  (case (tp_ _tpOnested ) of
                   { ( !_tpIpp,!_tpIprec) ->
                       (case (({-# LINE 120 "PrintCode.ag" #-}
                               "type" >#< hv_sp (name_ : params_) >#< "=" >#<  _tpIpp
                               {-# LINE 1493 "PrintCode.hs" #-}
                               )) of
                        { !_lhsOpp ->
                        ( _lhsOpp) }) }) })) )
-- Decls -------------------------------------------------------
{-
   visit 0:
      inherited attributes:
         isDeclOfLet          : Bool
         nested               : Bool
         options              : Options
         outputfile           : String
      synthesized attribute:
         pps                  : PP_Docs
   alternatives:
      alternative Cons:
         child hd             : Decl 
         child tl             : Decls 
      alternative Nil:
-}
-- cata
sem_Decls :: Decls  ->
             T_Decls 
sem_Decls !list  =
    (Prelude.foldr sem_Decls_Cons sem_Decls_Nil (Prelude.map sem_Decl list) )
-- semantic domain
newtype T_Decls  = T_Decls (Bool ->
                            Bool ->
                            Options ->
                            String ->
                            ( PP_Docs))
data Inh_Decls  = Inh_Decls {isDeclOfLet_Inh_Decls :: !(Bool),nested_Inh_Decls :: !(Bool),options_Inh_Decls :: !(Options),outputfile_Inh_Decls :: !(String)}
data Syn_Decls  = Syn_Decls {pps_Syn_Decls :: !(PP_Docs)}
wrap_Decls :: T_Decls  ->
              Inh_Decls  ->
              Syn_Decls 
wrap_Decls !(T_Decls sem ) !(Inh_Decls _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile )  =
    (let ( !_lhsOpps) = sem _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile 
     in  (Syn_Decls _lhsOpps ))
sem_Decls_Cons :: T_Decl  ->
                  T_Decls  ->
                  T_Decls 
sem_Decls_Cons !(T_Decl hd_ ) !(T_Decls tl_ )  =
    (T_Decls (\ (!_lhsIisDeclOfLet)
                (!_lhsInested)
                (!_lhsIoptions)
                (!_lhsIoutputfile) ->
                  (case (({-# LINE 39 "PrintCode.ag" #-}
                          _lhsIoutputfile
                          {-# LINE 1542 "PrintCode.hs" #-}
                          )) of
                   { !_tlOoutputfile ->
                   (case (({-# LINE 49 "PrintCode.ag" #-}
                           _lhsIoptions
                           {-# LINE 1547 "PrintCode.hs" #-}
                           )) of
                    { !_tlOoptions ->
                    (case (({-# LINE 53 "PrintCode.ag" #-}
                            _lhsInested
                            {-# LINE 1552 "PrintCode.hs" #-}
                            )) of
                     { !_tlOnested ->
                     (case (({-# LINE 403 "PrintCode.ag" #-}
                             _lhsIisDeclOfLet
                             {-# LINE 1557 "PrintCode.hs" #-}
                             )) of
                      { !_tlOisDeclOfLet ->
                      (case (({-# LINE 39 "PrintCode.ag" #-}
                              _lhsIoutputfile
                              {-# LINE 1562 "PrintCode.hs" #-}
                              )) of
                       { !_hdOoutputfile ->
                       (case (({-# LINE 49 "PrintCode.ag" #-}
                               _lhsIoptions
                               {-# LINE 1567 "PrintCode.hs" #-}
                               )) of
                        { !_hdOoptions ->
                        (case (({-# LINE 51 "PrintCode.ag" #-}
                                _lhsInested
                                {-# LINE 1572 "PrintCode.hs" #-}
                                )) of
                         { !_hdOnested ->
                         (case (({-# LINE 403 "PrintCode.ag" #-}
                                 _lhsIisDeclOfLet
                                 {-# LINE 1577 "PrintCode.hs" #-}
                                 )) of
                          { !_hdOisDeclOfLet ->
                          (case (tl_ _tlOisDeclOfLet _tlOnested _tlOoptions _tlOoutputfile ) of
                           { ( !_tlIpps) ->
                               (case (hd_ _hdOisDeclOfLet _hdOnested _hdOoptions _hdOoutputfile ) of
                                { ( !_hdIpp) ->
                                    (case (({-# LINE 84 "PrintCode.ag" #-}
                                            _hdIpp : _tlIpps
                                            {-# LINE 1586 "PrintCode.hs" #-}
                                            )) of
                                     { !_lhsOpps ->
                                     ( _lhsOpps) }) }) }) }) }) }) }) }) }) }) })) )
sem_Decls_Nil :: T_Decls 
sem_Decls_Nil  =
    (T_Decls (\ (!_lhsIisDeclOfLet)
                (!_lhsInested)
                (!_lhsIoptions)
                (!_lhsIoutputfile) ->
                  (case (({-# LINE 85 "PrintCode.ag" #-}
                          []
                          {-# LINE 1598 "PrintCode.hs" #-}
                          )) of
                   { !_lhsOpps ->
                   ( _lhsOpps) })) )
-- Expr --------------------------------------------------------
{-
   visit 0:
      inherited attributes:
         nested               : Bool
         options              : Options
         outputfile           : String
      synthesized attribute:
         pp                   : PP_Doc
   alternatives:
      alternative App:
         child name           : {String}
         child args           : Exprs 
      alternative Case:
         child expr           : Expr 
         child alts           : CaseAlts 
      alternative Do:
         child stmts          : Decls 
         child body           : Expr 
      alternative InvokeExpr:
         child nt             : {String}
         child expr           : Expr 
         child args           : Exprs 
      alternative Lambda:
         child args           : Exprs 
         child body           : Expr 
         visit 0:
            local addBang     : _
            local strictParams : _
      alternative Let:
         child decls          : Decls 
         child body           : Expr 
      alternative LineExpr:
         child expr           : Expr 
      alternative PragmaExpr:
         child onLeftSide     : {Bool}
         child onNewLine      : {Bool}
         child txt            : {String}
         child expr           : Expr 
      alternative ResultExpr:
         child nt             : {String}
         child expr           : Expr 
      alternative ResumeExpr:
         child nt             : {String}
         child expr           : Expr 
         child left           : Lhs 
         child rhs            : Expr 
      alternative SemFun:
         child nt             : {String}
         child args           : Exprs 
         child body           : Expr 
         visit 0:
            local addBang     : _
            local strictParams : _
      alternative SimpleExpr:
         child txt            : {String}
      alternative TextExpr:
         child lns            : {[String]}
      alternative Trace:
         child txt            : {String}
         child expr           : Expr 
      alternative TupleExpr:
         child exprs          : Exprs 
      alternative TypedExpr:
         child expr           : Expr 
         child tp             : Type 
      alternative UnboxedTupleExpr:
         child exprs          : Exprs 
-}
-- cata
sem_Expr :: Expr  ->
            T_Expr 
sem_Expr !(App _name _args )  =
    (sem_Expr_App _name (sem_Exprs _args ) )
sem_Expr !(Case _expr _alts )  =
    (sem_Expr_Case (sem_Expr _expr ) (sem_CaseAlts _alts ) )
sem_Expr !(Do _stmts _body )  =
    (sem_Expr_Do (sem_Decls _stmts ) (sem_Expr _body ) )
sem_Expr !(InvokeExpr _nt _expr _args )  =
    (sem_Expr_InvokeExpr _nt (sem_Expr _expr ) (sem_Exprs _args ) )
sem_Expr !(Lambda _args _body )  =
    (sem_Expr_Lambda (sem_Exprs _args ) (sem_Expr _body ) )
sem_Expr !(Let _decls _body )  =
    (sem_Expr_Let (sem_Decls _decls ) (sem_Expr _body ) )
sem_Expr !(LineExpr _expr )  =
    (sem_Expr_LineExpr (sem_Expr _expr ) )
sem_Expr !(PragmaExpr _onLeftSide _onNewLine _txt _expr )  =
    (sem_Expr_PragmaExpr _onLeftSide _onNewLine _txt (sem_Expr _expr ) )
sem_Expr !(ResultExpr _nt _expr )  =
    (sem_Expr_ResultExpr _nt (sem_Expr _expr ) )
sem_Expr !(ResumeExpr _nt _expr _left _rhs )  =
    (sem_Expr_ResumeExpr _nt (sem_Expr _expr ) (sem_Lhs _left ) (sem_Expr _rhs ) )
sem_Expr !(SemFun _nt _args _body )  =
    (sem_Expr_SemFun _nt (sem_Exprs _args ) (sem_Expr _body ) )
sem_Expr !(SimpleExpr _txt )  =
    (sem_Expr_SimpleExpr _txt )
sem_Expr !(TextExpr _lns )  =
    (sem_Expr_TextExpr _lns )
sem_Expr !(Trace _txt _expr )  =
    (sem_Expr_Trace _txt (sem_Expr _expr ) )
sem_Expr !(TupleExpr _exprs )  =
    (sem_Expr_TupleExpr (sem_Exprs _exprs ) )
sem_Expr !(TypedExpr _expr _tp )  =
    (sem_Expr_TypedExpr (sem_Expr _expr ) (sem_Type _tp ) )
sem_Expr !(UnboxedTupleExpr _exprs )  =
    (sem_Expr_UnboxedTupleExpr (sem_Exprs _exprs ) )
-- semantic domain
newtype T_Expr  = T_Expr (Bool ->
                          Options ->
                          String ->
                          ( PP_Doc))
data Inh_Expr  = Inh_Expr {nested_Inh_Expr :: !(Bool),options_Inh_Expr :: !(Options),outputfile_Inh_Expr :: !(String)}
data Syn_Expr  = Syn_Expr {pp_Syn_Expr :: !(PP_Doc)}
wrap_Expr :: T_Expr  ->
             Inh_Expr  ->
             Syn_Expr 
wrap_Expr !(T_Expr sem ) !(Inh_Expr _lhsInested _lhsIoptions _lhsIoutputfile )  =
    (let ( !_lhsOpp) = sem _lhsInested _lhsIoptions _lhsIoutputfile 
     in  (Syn_Expr _lhsOpp ))
sem_Expr_App :: String ->
                T_Exprs  ->
                T_Expr 
sem_Expr_App !name_ !(T_Exprs args_ )  =
    (T_Expr (\ (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 39 "PrintCode.ag" #-}
                         _lhsIoutputfile
                         {-# LINE 1730 "PrintCode.hs" #-}
                         )) of
                  { !_argsOoutputfile ->
                  (case (({-# LINE 49 "PrintCode.ag" #-}
                          _lhsIoptions
                          {-# LINE 1735 "PrintCode.hs" #-}
                          )) of
                   { !_argsOoptions ->
                   (case (({-# LINE 53 "PrintCode.ag" #-}
                           _lhsInested
                           {-# LINE 1740 "PrintCode.hs" #-}
                           )) of
                    { !_argsOnested ->
                    (case (args_ _argsOnested _argsOoptions _argsOoutputfile ) of
                     { ( !_argsIpps) ->
                         (case (({-# LINE 160 "PrintCode.ag" #-}
                                 pp_parens $ name_ >#< hv_sp _argsIpps
                                 {-# LINE 1747 "PrintCode.hs" #-}
                                 )) of
                          { !_lhsOpp ->
                          ( _lhsOpp) }) }) }) }) })) )
sem_Expr_Case :: T_Expr  ->
                 T_CaseAlts  ->
                 T_Expr 
sem_Expr_Case !(T_Expr expr_ ) !(T_CaseAlts alts_ )  =
    (T_Expr (\ (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 39 "PrintCode.ag" #-}
                         _lhsIoutputfile
                         {-# LINE 1760 "PrintCode.hs" #-}
                         )) of
                  { !_altsOoutputfile ->
                  (case (({-# LINE 49 "PrintCode.ag" #-}
                          _lhsIoptions
                          {-# LINE 1765 "PrintCode.hs" #-}
                          )) of
                   { !_altsOoptions ->
                   (case (({-# LINE 55 "PrintCode.ag" #-}
                           _lhsInested
                           {-# LINE 1770 "PrintCode.hs" #-}
                           )) of
                    { !_altsOnested ->
                    (case (({-# LINE 39 "PrintCode.ag" #-}
                            _lhsIoutputfile
                            {-# LINE 1775 "PrintCode.hs" #-}
                            )) of
                     { !_exprOoutputfile ->
                     (case (({-# LINE 49 "PrintCode.ag" #-}
                             _lhsIoptions
                             {-# LINE 1780 "PrintCode.hs" #-}
                             )) of
                      { !_exprOoptions ->
                      (case (({-# LINE 51 "PrintCode.ag" #-}
                              _lhsInested
                              {-# LINE 1785 "PrintCode.hs" #-}
                              )) of
                       { !_exprOnested ->
                       (case (alts_ _altsOnested _altsOoptions _altsOoutputfile ) of
                        { ( !_altsIpps) ->
                            (case (expr_ _exprOnested _exprOoptions _exprOoutputfile ) of
                             { ( !_exprIpp) ->
                                 (case (({-# LINE 143 "PrintCode.ag" #-}
                                         pp_parens (    "case" >#< pp_parens _exprIpp >#< "of"
                                                   >-< (vlist _altsIpps)
                                                   )
                                         {-# LINE 1796 "PrintCode.hs" #-}
                                         )) of
                                  { !_lhsOpp ->
                                  ( _lhsOpp) }) }) }) }) }) }) }) }) })) )
sem_Expr_Do :: T_Decls  ->
               T_Expr  ->
               T_Expr 
sem_Expr_Do !(T_Decls stmts_ ) !(T_Expr body_ )  =
    (T_Expr (\ (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 39 "PrintCode.ag" #-}
                         _lhsIoutputfile
                         {-# LINE 1809 "PrintCode.hs" #-}
                         )) of
                  { !_bodyOoutputfile ->
                  (case (({-# LINE 49 "PrintCode.ag" #-}
                          _lhsIoptions
                          {-# LINE 1814 "PrintCode.hs" #-}
                          )) of
                   { !_bodyOoptions ->
                   (case (({-# LINE 51 "PrintCode.ag" #-}
                           _lhsInested
                           {-# LINE 1819 "PrintCode.hs" #-}
                           )) of
                    { !_bodyOnested ->
                    (case (({-# LINE 39 "PrintCode.ag" #-}
                            _lhsIoutputfile
                            {-# LINE 1824 "PrintCode.hs" #-}
                            )) of
                     { !_stmtsOoutputfile ->
                     (case (({-# LINE 49 "PrintCode.ag" #-}
                             _lhsIoptions
                             {-# LINE 1829 "PrintCode.hs" #-}
                             )) of
                      { !_stmtsOoptions ->
                      (case (({-# LINE 53 "PrintCode.ag" #-}
                              _lhsInested
                              {-# LINE 1834 "PrintCode.hs" #-}
                              )) of
                       { !_stmtsOnested ->
                       (case (({-# LINE 412 "PrintCode.ag" #-}
                               False
                               {-# LINE 1839 "PrintCode.hs" #-}
                               )) of
                        { !_stmtsOisDeclOfLet ->
                        (case (body_ _bodyOnested _bodyOoptions _bodyOoutputfile ) of
                         { ( !_bodyIpp) ->
                             (case (stmts_ _stmtsOisDeclOfLet _stmtsOnested _stmtsOoptions _stmtsOoutputfile ) of
                              { ( !_stmtsIpps) ->
                                  (case (({-# LINE 146 "PrintCode.ag" #-}
                                          pp_parens ( "do" >#< (   vlist _stmtsIpps
                                                               >-< ("return" >#< _bodyIpp))
                                                    )
                                          {-# LINE 1850 "PrintCode.hs" #-}
                                          )) of
                                   { !_lhsOpp ->
                                   ( _lhsOpp) }) }) }) }) }) }) }) }) }) })) )
sem_Expr_InvokeExpr :: String ->
                       T_Expr  ->
                       T_Exprs  ->
                       T_Expr 
sem_Expr_InvokeExpr !nt_ !(T_Expr expr_ ) !(T_Exprs args_ )  =
    (T_Expr (\ (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 39 "PrintCode.ag" #-}
                         _lhsIoutputfile
                         {-# LINE 1864 "PrintCode.hs" #-}
                         )) of
                  { !_argsOoutputfile ->
                  (case (({-# LINE 49 "PrintCode.ag" #-}
                          _lhsIoptions
                          {-# LINE 1869 "PrintCode.hs" #-}
                          )) of
                   { !_argsOoptions ->
                   (case (({-# LINE 53 "PrintCode.ag" #-}
                           _lhsInested
                           {-# LINE 1874 "PrintCode.hs" #-}
                           )) of
                    { !_argsOnested ->
                    (case (({-# LINE 39 "PrintCode.ag" #-}
                            _lhsIoutputfile
                            {-# LINE 1879 "PrintCode.hs" #-}
                            )) of
                     { !_exprOoutputfile ->
                     (case (({-# LINE 49 "PrintCode.ag" #-}
                             _lhsIoptions
                             {-# LINE 1884 "PrintCode.hs" #-}
                             )) of
                      { !_exprOoptions ->
                      (case (({-# LINE 51 "PrintCode.ag" #-}
                              _lhsInested
                              {-# LINE 1889 "PrintCode.hs" #-}
                              )) of
                       { !_exprOnested ->
                       (case (args_ _argsOnested _argsOoptions _argsOoutputfile ) of
                        { ( !_argsIpps) ->
                            (case (expr_ _exprOnested _exprOoptions _exprOoutputfile ) of
                             { ( !_exprIpp) ->
                                 (case (({-# LINE 184 "PrintCode.ag" #-}
                                         if breadthFirst _lhsIoptions
                                         then "invoke" >#< pp_parens _exprIpp >#< pp_parens (
                                               nt_ >|< "_Inh" >#< pp_parens (ppTuple False _argsIpps))
                                         else _exprIpp >#< hv_sp _argsIpps
                                         {-# LINE 1901 "PrintCode.hs" #-}
                                         )) of
                                  { !_lhsOpp ->
                                  ( _lhsOpp) }) }) }) }) }) }) }) }) })) )
sem_Expr_Lambda :: T_Exprs  ->
                   T_Expr  ->
                   T_Expr 
sem_Expr_Lambda !(T_Exprs args_ ) !(T_Expr body_ )  =
    (T_Expr (\ (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 39 "PrintCode.ag" #-}
                         _lhsIoutputfile
                         {-# LINE 1914 "PrintCode.hs" #-}
                         )) of
                  { !_bodyOoutputfile ->
                  (case (({-# LINE 49 "PrintCode.ag" #-}
                          _lhsIoptions
                          {-# LINE 1919 "PrintCode.hs" #-}
                          )) of
                   { !_bodyOoptions ->
                   (case (({-# LINE 51 "PrintCode.ag" #-}
                           _lhsInested
                           {-# LINE 1924 "PrintCode.hs" #-}
                           )) of
                    { !_bodyOnested ->
                    (case (({-# LINE 39 "PrintCode.ag" #-}
                            _lhsIoutputfile
                            {-# LINE 1929 "PrintCode.hs" #-}
                            )) of
                     { !_argsOoutputfile ->
                     (case (({-# LINE 49 "PrintCode.ag" #-}
                             _lhsIoptions
                             {-# LINE 1934 "PrintCode.hs" #-}
                             )) of
                      { !_argsOoptions ->
                      (case (({-# LINE 53 "PrintCode.ag" #-}
                              _lhsInested
                              {-# LINE 1939 "PrintCode.hs" #-}
                              )) of
                       { !_argsOnested ->
                       (case (({-# LINE 152 "PrintCode.ag" #-}
                               if bangpats _lhsIoptions
                               then \p -> pp_parens ("!" >|< p)
                               else id
                               {-# LINE 1946 "PrintCode.hs" #-}
                               )) of
                        { !_addBang ->
                        (case (args_ _argsOnested _argsOoptions _argsOoutputfile ) of
                         { ( !_argsIpps) ->
                             (case (({-# LINE 149 "PrintCode.ag" #-}
                                     if strictSems _lhsIoptions
                                     then _argsIpps
                                     else []
                                     {-# LINE 1955 "PrintCode.hs" #-}
                                     )) of
                              { !_strictParams ->
                              (case (body_ _bodyOnested _bodyOoptions _bodyOoutputfile ) of
                               { ( !_bodyIpp) ->
                                   (case (({-# LINE 155 "PrintCode.ag" #-}
                                           pp_parens (    "\\" >#< (vlist (map _addBang     _argsIpps)) >#< "->"
                                                     >-< indent 4 (_strictParams     `ppMultiSeqV` _bodyIpp)
                                                     )
                                           {-# LINE 1964 "PrintCode.hs" #-}
                                           )) of
                                    { !_lhsOpp ->
                                    ( _lhsOpp) }) }) }) }) }) }) }) }) }) }) })) )
sem_Expr_Let :: T_Decls  ->
                T_Expr  ->
                T_Expr 
sem_Expr_Let !(T_Decls decls_ ) !(T_Expr body_ )  =
    (T_Expr (\ (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 39 "PrintCode.ag" #-}
                         _lhsIoutputfile
                         {-# LINE 1977 "PrintCode.hs" #-}
                         )) of
                  { !_bodyOoutputfile ->
                  (case (({-# LINE 49 "PrintCode.ag" #-}
                          _lhsIoptions
                          {-# LINE 1982 "PrintCode.hs" #-}
                          )) of
                   { !_bodyOoptions ->
                   (case (({-# LINE 51 "PrintCode.ag" #-}
                           _lhsInested
                           {-# LINE 1987 "PrintCode.hs" #-}
                           )) of
                    { !_bodyOnested ->
                    (case (({-# LINE 39 "PrintCode.ag" #-}
                            _lhsIoutputfile
                            {-# LINE 1992 "PrintCode.hs" #-}
                            )) of
                     { !_declsOoutputfile ->
                     (case (({-# LINE 49 "PrintCode.ag" #-}
                             _lhsIoptions
                             {-# LINE 1997 "PrintCode.hs" #-}
                             )) of
                      { !_declsOoptions ->
                      (case (({-# LINE 53 "PrintCode.ag" #-}
                              _lhsInested
                              {-# LINE 2002 "PrintCode.hs" #-}
                              )) of
                       { !_declsOnested ->
                       (case (({-# LINE 410 "PrintCode.ag" #-}
                               True
                               {-# LINE 2007 "PrintCode.hs" #-}
                               )) of
                        { !_declsOisDeclOfLet ->
                        (case (body_ _bodyOnested _bodyOoptions _bodyOoutputfile ) of
                         { ( !_bodyIpp) ->
                             (case (decls_ _declsOisDeclOfLet _declsOnested _declsOoptions _declsOoutputfile ) of
                              { ( !_declsIpps) ->
                                  (case (({-# LINE 140 "PrintCode.ag" #-}
                                          pp_parens (    "let" >#< (vlist _declsIpps)
                                                    >-< "in " >#< _bodyIpp
                                                    )
                                          {-# LINE 2018 "PrintCode.hs" #-}
                                          )) of
                                   { !_lhsOpp ->
                                   ( _lhsOpp) }) }) }) }) }) }) }) }) }) })) )
sem_Expr_LineExpr :: T_Expr  ->
                     T_Expr 
sem_Expr_LineExpr !(T_Expr expr_ )  =
    (T_Expr (\ (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 39 "PrintCode.ag" #-}
                         _lhsIoutputfile
                         {-# LINE 2030 "PrintCode.hs" #-}
                         )) of
                  { !_exprOoutputfile ->
                  (case (({-# LINE 49 "PrintCode.ag" #-}
                          _lhsIoptions
                          {-# LINE 2035 "PrintCode.hs" #-}
                          )) of
                   { !_exprOoptions ->
                   (case (({-# LINE 51 "PrintCode.ag" #-}
                           _lhsInested
                           {-# LINE 2040 "PrintCode.hs" #-}
                           )) of
                    { !_exprOnested ->
                    (case (expr_ _exprOnested _exprOoptions _exprOoutputfile ) of
                     { ( !_exprIpp) ->
                         (case (({-# LINE 177 "PrintCode.ag" #-}
                                 _exprIpp >-< "{-# LINE" >#< ppWithLineNr (\n -> pp $ show $ n + 1) >#< show _lhsIoutputfile >#< "#-}"
                                          >-< ""
                                 {-# LINE 2048 "PrintCode.hs" #-}
                                 )) of
                          { !_lhsOpp ->
                          ( _lhsOpp) }) }) }) }) })) )
sem_Expr_PragmaExpr :: Bool ->
                       Bool ->
                       String ->
                       T_Expr  ->
                       T_Expr 
sem_Expr_PragmaExpr !onLeftSide_ !onNewLine_ !txt_ !(T_Expr expr_ )  =
    (T_Expr (\ (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 39 "PrintCode.ag" #-}
                         _lhsIoutputfile
                         {-# LINE 2063 "PrintCode.hs" #-}
                         )) of
                  { !_exprOoutputfile ->
                  (case (({-# LINE 49 "PrintCode.ag" #-}
                          _lhsIoptions
                          {-# LINE 2068 "PrintCode.hs" #-}
                          )) of
                   { !_exprOoptions ->
                   (case (({-# LINE 51 "PrintCode.ag" #-}
                           _lhsInested
                           {-# LINE 2073 "PrintCode.hs" #-}
                           )) of
                    { !_exprOnested ->
                    (case (expr_ _exprOnested _exprOoptions _exprOoutputfile ) of
                     { ( !_exprIpp) ->
                         (case (({-# LINE 166 "PrintCode.ag" #-}
                                 let pragmaDoc = "{-#" >#< txt_ >#< "#-}"
                                     op = if onNewLine_
                                          then (>-<)
                                          else (>#<)
                                     leftOp x y = if onLeftSide_
                                                  then x `op` y
                                                  else y
                                     rightOp x y = if onLeftSide_
                                                   then x
                                                   else x `op` y
                                 in pp_parens (pragmaDoc `leftOp` _exprIpp `rightOp` pragmaDoc)
                                 {-# LINE 2090 "PrintCode.hs" #-}
                                 )) of
                          { !_lhsOpp ->
                          ( _lhsOpp) }) }) }) }) })) )
sem_Expr_ResultExpr :: String ->
                       T_Expr  ->
                       T_Expr 
sem_Expr_ResultExpr !nt_ !(T_Expr expr_ )  =
    (T_Expr (\ (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 39 "PrintCode.ag" #-}
                         _lhsIoutputfile
                         {-# LINE 2103 "PrintCode.hs" #-}
                         )) of
                  { !_exprOoutputfile ->
                  (case (({-# LINE 49 "PrintCode.ag" #-}
                          _lhsIoptions
                          {-# LINE 2108 "PrintCode.hs" #-}
                          )) of
                   { !_exprOoptions ->
                   (case (({-# LINE 51 "PrintCode.ag" #-}
                           _lhsInested
                           {-# LINE 2113 "PrintCode.hs" #-}
                           )) of
                    { !_exprOnested ->
                    (case (expr_ _exprOnested _exprOoptions _exprOoutputfile ) of
                     { ( !_exprIpp) ->
                         (case (({-# LINE 180 "PrintCode.ag" #-}
                                 if breadthFirst _lhsIoptions
                                 then "final" >#<
                                      pp_parens (nt_ >|< "_Syn" >#< pp_parens _exprIpp)
                                 else _exprIpp
                                 {-# LINE 2123 "PrintCode.hs" #-}
                                 )) of
                          { !_lhsOpp ->
                          ( _lhsOpp) }) }) }) }) })) )
sem_Expr_ResumeExpr :: String ->
                       T_Expr  ->
                       T_Lhs  ->
                       T_Expr  ->
                       T_Expr 
sem_Expr_ResumeExpr !nt_ !(T_Expr expr_ ) !(T_Lhs left_ ) !(T_Expr rhs_ )  =
    (T_Expr (\ (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 39 "PrintCode.ag" #-}
                         _lhsIoutputfile
                         {-# LINE 2138 "PrintCode.hs" #-}
                         )) of
                  { !_rhsOoutputfile ->
                  (case (({-# LINE 49 "PrintCode.ag" #-}
                          _lhsIoptions
                          {-# LINE 2143 "PrintCode.hs" #-}
                          )) of
                   { !_rhsOoptions ->
                   (case (({-# LINE 51 "PrintCode.ag" #-}
                           _lhsInested
                           {-# LINE 2148 "PrintCode.hs" #-}
                           )) of
                    { !_rhsOnested ->
                    (case (({-# LINE 39 "PrintCode.ag" #-}
                            _lhsIoutputfile
                            {-# LINE 2153 "PrintCode.hs" #-}
                            )) of
                     { !_leftOoutputfile ->
                     (case (({-# LINE 49 "PrintCode.ag" #-}
                             _lhsIoptions
                             {-# LINE 2158 "PrintCode.hs" #-}
                             )) of
                      { !_leftOoptions ->
                      (case (({-# LINE 51 "PrintCode.ag" #-}
                              _lhsInested
                              {-# LINE 2163 "PrintCode.hs" #-}
                              )) of
                       { !_leftOnested ->
                       (case (({-# LINE 39 "PrintCode.ag" #-}
                               _lhsIoutputfile
                               {-# LINE 2168 "PrintCode.hs" #-}
                               )) of
                        { !_exprOoutputfile ->
                        (case (({-# LINE 49 "PrintCode.ag" #-}
                                _lhsIoptions
                                {-# LINE 2173 "PrintCode.hs" #-}
                                )) of
                         { !_exprOoptions ->
                         (case (({-# LINE 51 "PrintCode.ag" #-}
                                 _lhsInested
                                 {-# LINE 2178 "PrintCode.hs" #-}
                                 )) of
                          { !_exprOnested ->
                          (case (({-# LINE 414 "PrintCode.ag" #-}
                                  False
                                  {-# LINE 2183 "PrintCode.hs" #-}
                                  )) of
                           { !_leftOisDeclOfLet ->
                           (case (rhs_ _rhsOnested _rhsOoptions _rhsOoutputfile ) of
                            { ( !_rhsIpp) ->
                                (case (left_ _leftOisDeclOfLet _leftOnested _leftOoptions _leftOoutputfile ) of
                                 { ( !_leftIpp) ->
                                     (case (expr_ _exprOnested _exprOoptions _exprOoutputfile ) of
                                      { ( !_exprIpp) ->
                                          (case (({-# LINE 188 "PrintCode.ag" #-}
                                                  if breadthFirst _lhsIoptions
                                                  then pp_parens ("resume" >#< pp_parens _exprIpp
                                                                 >-< indent 2 (pp_parens ( "\\" >|<
                                                                       pp_parens ("~" >|< pp_parens (nt_ >|< "_Syn" >#< "_inh_arg"))
                                                                         >#< "->"
                                                                 >-< indent 2 ( "let" >#< _leftIpp >#< "= _inh_arg"
                                                                 >-< indent 2 ("in" >#< _rhsIpp)
                                                                 ))))
                                                  else pp_parens ( "case" >#< pp_parens _exprIpp >#< "of"
                                                                 >-< ("{" >#< _leftIpp >#< "->")
                                                                 >-< indent 4 (_rhsIpp >#< "}")
                                                                 )
                                                  {-# LINE 2205 "PrintCode.hs" #-}
                                                  )) of
                                           { !_lhsOpp ->
                                           ( _lhsOpp) }) }) }) }) }) }) }) }) }) }) }) }) }) })) )
sem_Expr_SemFun :: String ->
                   T_Exprs  ->
                   T_Expr  ->
                   T_Expr 
sem_Expr_SemFun !nt_ !(T_Exprs args_ ) !(T_Expr body_ )  =
    (T_Expr (\ (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 39 "PrintCode.ag" #-}
                         _lhsIoutputfile
                         {-# LINE 2219 "PrintCode.hs" #-}
                         )) of
                  { !_bodyOoutputfile ->
                  (case (({-# LINE 49 "PrintCode.ag" #-}
                          _lhsIoptions
                          {-# LINE 2224 "PrintCode.hs" #-}
                          )) of
                   { !_bodyOoptions ->
                   (case (({-# LINE 51 "PrintCode.ag" #-}
                           _lhsInested
                           {-# LINE 2229 "PrintCode.hs" #-}
                           )) of
                    { !_bodyOnested ->
                    (case (({-# LINE 39 "PrintCode.ag" #-}
                            _lhsIoutputfile
                            {-# LINE 2234 "PrintCode.hs" #-}
                            )) of
                     { !_argsOoutputfile ->
                     (case (({-# LINE 49 "PrintCode.ag" #-}
                             _lhsIoptions
                             {-# LINE 2239 "PrintCode.hs" #-}
                             )) of
                      { !_argsOoptions ->
                      (case (({-# LINE 53 "PrintCode.ag" #-}
                              _lhsInested
                              {-# LINE 2244 "PrintCode.hs" #-}
                              )) of
                       { !_argsOnested ->
                       (case (({-# LINE 203 "PrintCode.ag" #-}
                               if bangpats _lhsIoptions
                               then \p -> pp_parens ("!" >|< p)
                               else id
                               {-# LINE 2251 "PrintCode.hs" #-}
                               )) of
                        { !_addBang ->
                        (case (args_ _argsOnested _argsOoptions _argsOoutputfile ) of
                         { ( !_argsIpps) ->
                             (case (({-# LINE 200 "PrintCode.ag" #-}
                                     if strictSems _lhsIoptions
                                     then _argsIpps
                                     else []
                                     {-# LINE 2260 "PrintCode.hs" #-}
                                     )) of
                              { !_strictParams ->
                              (case (body_ _bodyOnested _bodyOoptions _bodyOoutputfile ) of
                               { ( !_bodyIpp) ->
                                   (case (({-# LINE 206 "PrintCode.ag" #-}
                                           if breadthFirst _lhsIoptions
                                           then "Child" >#< pp_parens ( "\\" >|<
                                                    pp_parens (nt_ >|< "_Inh" >#<
                                                      ppTuple False (map _addBang     _argsIpps)) >#< "->"
                                                >-< indent 2 (_strictParams     `ppMultiSeqV` _bodyIpp))
                                           else if null _argsIpps
                                                then _bodyIpp
                                                else pp_parens (    "\\" >#< (vlist (map _addBang     _argsIpps)) >#< "->"
                                                               >-< indent 4 (_strictParams     `ppMultiSeqV` _bodyIpp)
                                                               )
                                           {-# LINE 2276 "PrintCode.hs" #-}
                                           )) of
                                    { !_lhsOpp ->
                                    ( _lhsOpp) }) }) }) }) }) }) }) }) }) }) })) )
sem_Expr_SimpleExpr :: String ->
                       T_Expr 
sem_Expr_SimpleExpr !txt_  =
    (T_Expr (\ (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 161 "PrintCode.ag" #-}
                         text txt_
                         {-# LINE 2288 "PrintCode.hs" #-}
                         )) of
                  { !_lhsOpp ->
                  ( _lhsOpp) })) )
sem_Expr_TextExpr :: ([String]) ->
                     T_Expr 
sem_Expr_TextExpr !lns_  =
    (T_Expr (\ (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 162 "PrintCode.ag" #-}
                         vlist (map text lns_)
                         {-# LINE 2300 "PrintCode.hs" #-}
                         )) of
                  { !_lhsOpp ->
                  ( _lhsOpp) })) )
sem_Expr_Trace :: String ->
                  T_Expr  ->
                  T_Expr 
sem_Expr_Trace !txt_ !(T_Expr expr_ )  =
    (T_Expr (\ (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 39 "PrintCode.ag" #-}
                         _lhsIoutputfile
                         {-# LINE 2313 "PrintCode.hs" #-}
                         )) of
                  { !_exprOoutputfile ->
                  (case (({-# LINE 49 "PrintCode.ag" #-}
                          _lhsIoptions
                          {-# LINE 2318 "PrintCode.hs" #-}
                          )) of
                   { !_exprOoptions ->
                   (case (({-# LINE 51 "PrintCode.ag" #-}
                           _lhsInested
                           {-# LINE 2323 "PrintCode.hs" #-}
                           )) of
                    { !_exprOnested ->
                    (case (expr_ _exprOnested _exprOoptions _exprOoutputfile ) of
                     { ( !_exprIpp) ->
                         (case (({-# LINE 163 "PrintCode.ag" #-}
                                 "trace" >#< (   pp_parens ("\"" >|< text txt_ >|< "\"")
                                             >-< pp_parens _exprIpp
                                             )
                                 {-# LINE 2332 "PrintCode.hs" #-}
                                 )) of
                          { !_lhsOpp ->
                          ( _lhsOpp) }) }) }) }) })) )
sem_Expr_TupleExpr :: T_Exprs  ->
                      T_Expr 
sem_Expr_TupleExpr !(T_Exprs exprs_ )  =
    (T_Expr (\ (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 39 "PrintCode.ag" #-}
                         _lhsIoutputfile
                         {-# LINE 2344 "PrintCode.hs" #-}
                         )) of
                  { !_exprsOoutputfile ->
                  (case (({-# LINE 49 "PrintCode.ag" #-}
                          _lhsIoptions
                          {-# LINE 2349 "PrintCode.hs" #-}
                          )) of
                   { !_exprsOoptions ->
                   (case (({-# LINE 53 "PrintCode.ag" #-}
                           _lhsInested
                           {-# LINE 2354 "PrintCode.hs" #-}
                           )) of
                    { !_exprsOnested ->
                    (case (exprs_ _exprsOnested _exprsOoptions _exprsOoutputfile ) of
                     { ( !_exprsIpps) ->
                         (case (({-# LINE 158 "PrintCode.ag" #-}
                                 ppTuple _lhsInested _exprsIpps
                                 {-# LINE 2361 "PrintCode.hs" #-}
                                 )) of
                          { !_lhsOpp ->
                          ( _lhsOpp) }) }) }) }) })) )
sem_Expr_TypedExpr :: T_Expr  ->
                      T_Type  ->
                      T_Expr 
sem_Expr_TypedExpr !(T_Expr expr_ ) !(T_Type tp_ )  =
    (T_Expr (\ (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 51 "PrintCode.ag" #-}
                         _lhsInested
                         {-# LINE 2374 "PrintCode.hs" #-}
                         )) of
                  { !_tpOnested ->
                  (case (({-# LINE 39 "PrintCode.ag" #-}
                          _lhsIoutputfile
                          {-# LINE 2379 "PrintCode.hs" #-}
                          )) of
                   { !_exprOoutputfile ->
                   (case (({-# LINE 49 "PrintCode.ag" #-}
                           _lhsIoptions
                           {-# LINE 2384 "PrintCode.hs" #-}
                           )) of
                    { !_exprOoptions ->
                    (case (({-# LINE 51 "PrintCode.ag" #-}
                            _lhsInested
                            {-# LINE 2389 "PrintCode.hs" #-}
                            )) of
                     { !_exprOnested ->
                     (case (tp_ _tpOnested ) of
                      { ( !_tpIpp,!_tpIprec) ->
                          (case (expr_ _exprOnested _exprOoptions _exprOoutputfile ) of
                           { ( !_exprIpp) ->
                               (case (({-# LINE 179 "PrintCode.ag" #-}
                                       pp_parens (_exprIpp >#< "::" >#< _tpIpp)
                                       {-# LINE 2398 "PrintCode.hs" #-}
                                       )) of
                                { !_lhsOpp ->
                                ( _lhsOpp) }) }) }) }) }) }) })) )
sem_Expr_UnboxedTupleExpr :: T_Exprs  ->
                             T_Expr 
sem_Expr_UnboxedTupleExpr !(T_Exprs exprs_ )  =
    (T_Expr (\ (!_lhsInested)
               (!_lhsIoptions)
               (!_lhsIoutputfile) ->
                 (case (({-# LINE 39 "PrintCode.ag" #-}
                         _lhsIoutputfile
                         {-# LINE 2410 "PrintCode.hs" #-}
                         )) of
                  { !_exprsOoutputfile ->
                  (case (({-# LINE 49 "PrintCode.ag" #-}
                          _lhsIoptions
                          {-# LINE 2415 "PrintCode.hs" #-}
                          )) of
                   { !_exprsOoptions ->
                   (case (({-# LINE 53 "PrintCode.ag" #-}
                           _lhsInested
                           {-# LINE 2420 "PrintCode.hs" #-}
                           )) of
                    { !_exprsOnested ->
                    (case (exprs_ _exprsOnested _exprsOoptions _exprsOoutputfile ) of
                     { ( !_exprsIpps) ->
                         (case (({-# LINE 159 "PrintCode.ag" #-}
                                 ppUnboxedTuple _lhsInested _exprsIpps
                                 {-# LINE 2427 "PrintCode.hs" #-}
                                 )) of
                          { !_lhsOpp ->
                          ( _lhsOpp) }) }) }) }) })) )
-- Exprs -------------------------------------------------------
{-
   visit 0:
      inherited attributes:
         nested               : Bool
         options              : Options
         outputfile           : String
      synthesized attribute:
         pps                  : PP_Docs
   alternatives:
      alternative Cons:
         child hd             : Expr 
         child tl             : Exprs 
      alternative Nil:
-}
-- cata
sem_Exprs :: Exprs  ->
             T_Exprs 
sem_Exprs !list  =
    (Prelude.foldr sem_Exprs_Cons sem_Exprs_Nil (Prelude.map sem_Expr list) )
-- semantic domain
newtype T_Exprs  = T_Exprs (Bool ->
                            Options ->
                            String ->
                            ( PP_Docs))
data Inh_Exprs  = Inh_Exprs {nested_Inh_Exprs :: !(Bool),options_Inh_Exprs :: !(Options),outputfile_Inh_Exprs :: !(String)}
data Syn_Exprs  = Syn_Exprs {pps_Syn_Exprs :: !(PP_Docs)}
wrap_Exprs :: T_Exprs  ->
              Inh_Exprs  ->
              Syn_Exprs 
wrap_Exprs !(T_Exprs sem ) !(Inh_Exprs _lhsInested _lhsIoptions _lhsIoutputfile )  =
    (let ( !_lhsOpps) = sem _lhsInested _lhsIoptions _lhsIoutputfile 
     in  (Syn_Exprs _lhsOpps ))
sem_Exprs_Cons :: T_Expr  ->
                  T_Exprs  ->
                  T_Exprs 
sem_Exprs_Cons !(T_Expr hd_ ) !(T_Exprs tl_ )  =
    (T_Exprs (\ (!_lhsInested)
                (!_lhsIoptions)
                (!_lhsIoutputfile) ->
                  (case (({-# LINE 39 "PrintCode.ag" #-}
                          _lhsIoutputfile
                          {-# LINE 2473 "PrintCode.hs" #-}
                          )) of
                   { !_tlOoutputfile ->
                   (case (({-# LINE 49 "PrintCode.ag" #-}
                           _lhsIoptions
                           {-# LINE 2478 "PrintCode.hs" #-}
                           )) of
                    { !_tlOoptions ->
                    (case (({-# LINE 53 "PrintCode.ag" #-}
                            _lhsInested
                            {-# LINE 2483 "PrintCode.hs" #-}
                            )) of
                     { !_tlOnested ->
                     (case (({-# LINE 39 "PrintCode.ag" #-}
                             _lhsIoutputfile
                             {-# LINE 2488 "PrintCode.hs" #-}
                             )) of
                      { !_hdOoutputfile ->
                      (case (({-# LINE 49 "PrintCode.ag" #-}
                              _lhsIoptions
                              {-# LINE 2493 "PrintCode.hs" #-}
                              )) of
                       { !_hdOoptions ->
                       (case (({-# LINE 51 "PrintCode.ag" #-}
                               _lhsInested
                               {-# LINE 2498 "PrintCode.hs" #-}
                               )) of
                        { !_hdOnested ->
                        (case (tl_ _tlOnested _tlOoptions _tlOoutputfile ) of
                         { ( !_tlIpps) ->
                             (case (hd_ _hdOnested _hdOoptions _hdOoutputfile ) of
                              { ( !_hdIpp) ->
                                  (case (({-# LINE 64 "PrintCode.ag" #-}
                                          _hdIpp : _tlIpps
                                          {-# LINE 2507 "PrintCode.hs" #-}
                                          )) of
                                   { !_lhsOpps ->
                                   ( _lhsOpps) }) }) }) }) }) }) }) }) })) )
sem_Exprs_Nil :: T_Exprs 
sem_Exprs_Nil  =
    (T_Exprs (\ (!_lhsInested)
                (!_lhsIoptions)
                (!_lhsIoutputfile) ->
                  (case (({-# LINE 65 "PrintCode.ag" #-}
                          []
                          {-# LINE 2518 "PrintCode.hs" #-}
                          )) of
                   { !_lhsOpps ->
                   ( _lhsOpps) })) )
-- Lhs ---------------------------------------------------------
{-
   visit 0:
      inherited attributes:
         isDeclOfLet          : Bool
         nested               : Bool
         options              : Options
         outputfile           : String
      synthesized attribute:
         pp                   : PP_Doc
   alternatives:
      alternative Fun:
         child name           : {String}
         child args           : Exprs 
         visit 0:
            local addBang     : _
            local strictGuard : _
            local hasStrictVars : _
            local addStrictGuard : _
      alternative Pattern3:
         child pat3           : Pattern 
         visit 0:
            local hasStrictVars : _
            local strictGuard : _
            local addStrictGuard : _
      alternative Pattern3SM:
         child pat3           : Pattern 
      alternative TupleLhs:
         child comps          : {[String]}
         visit 0:
            local addBang     : _
            local hasStrictVars : _
            local strictGuard : _
            local addStrictGuard : _
      alternative UnboxedTupleLhs:
         child comps          : {[String]}
         visit 0:
            local addBang     : _
            local hasStrictVars : _
            local strictGuard : _
            local addStrictGuard : _
      alternative Unwrap:
         child name           : {String}
         child sub            : Lhs 
-}
-- cata
sem_Lhs :: Lhs  ->
           T_Lhs 
sem_Lhs !(Fun _name _args )  =
    (sem_Lhs_Fun _name (sem_Exprs _args ) )
sem_Lhs !(Pattern3 _pat3 )  =
    (sem_Lhs_Pattern3 (sem_Pattern _pat3 ) )
sem_Lhs !(Pattern3SM _pat3 )  =
    (sem_Lhs_Pattern3SM (sem_Pattern _pat3 ) )
sem_Lhs !(TupleLhs _comps )  =
    (sem_Lhs_TupleLhs _comps )
sem_Lhs !(UnboxedTupleLhs _comps )  =
    (sem_Lhs_UnboxedTupleLhs _comps )
sem_Lhs !(Unwrap _name _sub )  =
    (sem_Lhs_Unwrap _name (sem_Lhs _sub ) )
-- semantic domain
newtype T_Lhs  = T_Lhs (Bool ->
                        Bool ->
                        Options ->
                        String ->
                        ( PP_Doc))
data Inh_Lhs  = Inh_Lhs {isDeclOfLet_Inh_Lhs :: !(Bool),nested_Inh_Lhs :: !(Bool),options_Inh_Lhs :: !(Options),outputfile_Inh_Lhs :: !(String)}
data Syn_Lhs  = Syn_Lhs {pp_Syn_Lhs :: !(PP_Doc)}
wrap_Lhs :: T_Lhs  ->
            Inh_Lhs  ->
            Syn_Lhs 
wrap_Lhs !(T_Lhs sem ) !(Inh_Lhs _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile )  =
    (let ( !_lhsOpp) = sem _lhsIisDeclOfLet _lhsInested _lhsIoptions _lhsIoutputfile 
     in  (Syn_Lhs _lhsOpp ))
sem_Lhs_Fun :: String ->
               T_Exprs  ->
               T_Lhs 
sem_Lhs_Fun !name_ !(T_Exprs args_ )  =
    (T_Lhs (\ (!_lhsIisDeclOfLet)
              (!_lhsInested)
              (!_lhsIoptions)
              (!_lhsIoutputfile) ->
                (case (({-# LINE 39 "PrintCode.ag" #-}
                        _lhsIoutputfile
                        {-# LINE 2606 "PrintCode.hs" #-}
                        )) of
                 { !_argsOoutputfile ->
                 (case (({-# LINE 49 "PrintCode.ag" #-}
                         _lhsIoptions
                         {-# LINE 2611 "PrintCode.hs" #-}
                         )) of
                  { !_argsOoptions ->
                  (case (({-# LINE 53 "PrintCode.ag" #-}
                          _lhsInested
                          {-# LINE 2616 "PrintCode.hs" #-}
                          )) of
                   { !_argsOnested ->
                   (case (({-# LINE 247 "PrintCode.ag" #-}
                           if bangpats _lhsIoptions
                                    then \p -> "!" >|< p
                                    else id
                           {-# LINE 2623 "PrintCode.hs" #-}
                           )) of
                    { !_addBang ->
                    (case (args_ _argsOnested _argsOoptions _argsOoutputfile ) of
                     { ( !_argsIpps) ->
                         (case (({-# LINE 244 "PrintCode.ag" #-}
                                 _argsIpps `ppMultiSeqH` (pp "True")
                                 {-# LINE 2630 "PrintCode.hs" #-}
                                 )) of
                          { !_strictGuard ->
                          (case (({-# LINE 243 "PrintCode.ag" #-}
                                  not (null _argsIpps)
                                  {-# LINE 2635 "PrintCode.hs" #-}
                                  )) of
                           { !_hasStrictVars ->
                           (case (({-# LINE 242 "PrintCode.ag" #-}
                                   if strictSems _lhsIoptions && _hasStrictVars     then \v -> v >#< "|" >#< _strictGuard     else id
                                   {-# LINE 2640 "PrintCode.hs" #-}
                                   )) of
                            { !_addStrictGuard ->
                            (case (({-# LINE 255 "PrintCode.ag" #-}
                                    _addStrictGuard     (name_ >#< hv_sp (map _addBang     _argsIpps))
                                    {-# LINE 2645 "PrintCode.hs" #-}
                                    )) of
                             { !_lhsOpp ->
                             ( _lhsOpp) }) }) }) }) }) }) }) }) })) )
sem_Lhs_Pattern3 :: T_Pattern  ->
                    T_Lhs 
sem_Lhs_Pattern3 !(T_Pattern pat3_ )  =
    (T_Lhs (\ (!_lhsIisDeclOfLet)
              (!_lhsInested)
              (!_lhsIoptions)
              (!_lhsIoutputfile) ->
                (case (({-# LINE 49 "PrintCode.ag" #-}
                        _lhsIoptions
                        {-# LINE 2658 "PrintCode.hs" #-}
                        )) of
                 { !_pat3Ooptions ->
                 (case (({-# LINE 403 "PrintCode.ag" #-}
                         _lhsIisDeclOfLet
                         {-# LINE 2663 "PrintCode.hs" #-}
                         )) of
                  { !_pat3OisDeclOfLet ->
                  (case (({-# LINE 376 "PrintCode.ag" #-}
                          False
                          {-# LINE 2668 "PrintCode.hs" #-}
                          )) of
                   { !_pat3ObelowIrrefutable ->
                   (case (pat3_ _pat3ObelowIrrefutable _pat3OisDeclOfLet _pat3Ooptions ) of
                    { ( !_pat3Icopy,!_pat3IisUnderscore,!_pat3Ipp,!_pat3Ipp',!_pat3IstrictVars) ->
                        (case (({-# LINE 234 "PrintCode.ag" #-}
                                not (null _pat3IstrictVars)
                                {-# LINE 2675 "PrintCode.hs" #-}
                                )) of
                         { !_hasStrictVars ->
                         (case (({-# LINE 233 "PrintCode.ag" #-}
                                 _pat3IstrictVars `ppMultiSeqH` (pp "True")
                                 {-# LINE 2680 "PrintCode.hs" #-}
                                 )) of
                          { !_strictGuard ->
                          (case (({-# LINE 231 "PrintCode.ag" #-}
                                  if strictCases _lhsIoptions && _hasStrictVars     then \v -> v >#< "|" >#< _strictGuard     else id
                                  {-# LINE 2685 "PrintCode.hs" #-}
                                  )) of
                           { !_addStrictGuard ->
                           (case (({-# LINE 251 "PrintCode.ag" #-}
                                   _addStrictGuard     _pat3Ipp
                                   {-# LINE 2690 "PrintCode.hs" #-}
                                   )) of
                            { !_lhsOpp ->
                            ( _lhsOpp) }) }) }) }) }) }) }) })) )
sem_Lhs_Pattern3SM :: T_Pattern  ->
                      T_Lhs 
sem_Lhs_Pattern3SM !(T_Pattern pat3_ )  =
    (T_Lhs (\ (!_lhsIisDeclOfLet)
              (!_lhsInested)
              (!_lhsIoptions)
              (!_lhsIoutputfile) ->
                (case (({-# LINE 49 "PrintCode.ag" #-}
                        _lhsIoptions
                        {-# LINE 2703 "PrintCode.hs" #-}
                        )) of
                 { !_pat3Ooptions ->
                 (case (({-# LINE 403 "PrintCode.ag" #-}
                         _lhsIisDeclOfLet
                         {-# LINE 2708 "PrintCode.hs" #-}
                         )) of
                  { !_pat3OisDeclOfLet ->
                  (case (({-# LINE 376 "PrintCode.ag" #-}
                          False
                          {-# LINE 2713 "PrintCode.hs" #-}
                          )) of
                   { !_pat3ObelowIrrefutable ->
                   (case (pat3_ _pat3ObelowIrrefutable _pat3OisDeclOfLet _pat3Ooptions ) of
                    { ( !_pat3Icopy,!_pat3IisUnderscore,!_pat3Ipp,!_pat3Ipp',!_pat3IstrictVars) ->
                        (case (({-# LINE 252 "PrintCode.ag" #-}
                                _pat3Ipp'
                                {-# LINE 2720 "PrintCode.hs" #-}
                                )) of
                         { !_lhsOpp ->
                         ( _lhsOpp) }) }) }) }) })) )
sem_Lhs_TupleLhs :: ([String]) ->
                    T_Lhs 
sem_Lhs_TupleLhs !comps_  =
    (T_Lhs (\ (!_lhsIisDeclOfLet)
              (!_lhsInested)
              (!_lhsIoptions)
              (!_lhsIoutputfile) ->
                (case (({-# LINE 247 "PrintCode.ag" #-}
                        if bangpats _lhsIoptions
                                 then \p -> "!" >|< p
                                 else id
                        {-# LINE 2735 "PrintCode.hs" #-}
                        )) of
                 { !_addBang ->
                 (case (({-# LINE 239 "PrintCode.ag" #-}
                         not (null comps_)
                         {-# LINE 2740 "PrintCode.hs" #-}
                         )) of
                  { !_hasStrictVars ->
                  (case (({-# LINE 236 "PrintCode.ag" #-}
                          if stricterCases _lhsIoptions && not _lhsIisDeclOfLet
                          then map text comps_ `ppMultiSeqH` (pp "True")
                          else pp "True"
                          {-# LINE 2747 "PrintCode.hs" #-}
                          )) of
                   { !_strictGuard ->
                   (case (({-# LINE 231 "PrintCode.ag" #-}
                           if strictCases _lhsIoptions && _hasStrictVars     then \v -> v >#< "|" >#< _strictGuard     else id
                           {-# LINE 2752 "PrintCode.hs" #-}
                           )) of
                    { !_addStrictGuard ->
                    (case (({-# LINE 253 "PrintCode.ag" #-}
                            _addStrictGuard     $ ppTuple _lhsInested (map (_addBang     . text) comps_)
                            {-# LINE 2757 "PrintCode.hs" #-}
                            )) of
                     { !_lhsOpp ->
                     ( _lhsOpp) }) }) }) }) })) )
sem_Lhs_UnboxedTupleLhs :: ([String]) ->
                           T_Lhs 
sem_Lhs_UnboxedTupleLhs !comps_  =
    (T_Lhs (\ (!_lhsIisDeclOfLet)
              (!_lhsInested)
              (!_lhsIoptions)
              (!_lhsIoutputfile) ->
                (case (({-# LINE 247 "PrintCode.ag" #-}
                        if bangpats _lhsIoptions
                                 then \p -> "!" >|< p
                                 else id
                        {-# LINE 2772 "PrintCode.hs" #-}
                        )) of
                 { !_addBang ->
                 (case (({-# LINE 239 "PrintCode.ag" #-}
                         not (null comps_)
                         {-# LINE 2777 "PrintCode.hs" #-}
                         )) of
                  { !_hasStrictVars ->
                  (case (({-# LINE 236 "PrintCode.ag" #-}
                          if stricterCases _lhsIoptions && not _lhsIisDeclOfLet
                          then map text comps_ `ppMultiSeqH` (pp "True")
                          else pp "True"
                          {-# LINE 2784 "PrintCode.hs" #-}
                          )) of
                   { !_strictGuard ->
                   (case (({-# LINE 231 "PrintCode.ag" #-}
                           if strictCases _lhsIoptions && _hasStrictVars     then \v -> v >#< "|" >#< _strictGuard     else id
                           {-# LINE 2789 "PrintCode.hs" #-}
                           )) of
                    { !_addStrictGuard ->
                    (case (({-# LINE 254 "PrintCode.ag" #-}
                            _addStrictGuard     $ ppUnboxedTuple _lhsInested (map (_addBang     . text) comps_)
                            {-# LINE 2794 "PrintCode.hs" #-}
                            )) of
                     { !_lhsOpp ->
                     ( _lhsOpp) }) }) }) }) })) )
sem_Lhs_Unwrap :: String ->
                  T_Lhs  ->
                  T_Lhs 
sem_Lhs_Unwrap !name_ !(T_Lhs sub_ )  =
    (T_Lhs (\ (!_lhsIisDeclOfLet)
              (!_lhsInested)
              (!_lhsIoptions)
              (!_lhsIoutputfile) ->
                (case (({-# LINE 39 "PrintCode.ag" #-}
                        _lhsIoutputfile
                        {-# LINE 2808 "PrintCode.hs" #-}
                        )) of
                 { !_subOoutputfile ->
                 (case (({-# LINE 49 "PrintCode.ag" #-}
                         _lhsIoptions
                         {-# LINE 2813 "PrintCode.hs" #-}
                         )) of
                  { !_subOoptions ->
                  (case (({-# LINE 51 "PrintCode.ag" #-}
                          _lhsInested
                          {-# LINE 2818 "PrintCode.hs" #-}
                          )) of
                   { !_subOnested ->
                   (case (({-# LINE 403 "PrintCode.ag" #-}
                           _lhsIisDeclOfLet
                           {-# LINE 2823 "PrintCode.hs" #-}
                           )) of
                    { !_subOisDeclOfLet ->
                    (case (sub_ _subOisDeclOfLet _subOnested _subOoptions _subOoutputfile ) of
                     { ( !_subIpp) ->
                         (case (({-# LINE 256 "PrintCode.ag" #-}
                                 pp_parens (name_ >#< _subIpp)
                                 {-# LINE 2830 "PrintCode.hs" #-}
                                 )) of
                          { !_lhsOpp ->
                          ( _lhsOpp) }) }) }) }) }) })) )
-- NamedType ---------------------------------------------------
{-
   visit 0:
      inherited attribute:
         nested               : Bool
      synthesized attribute:
         pp                   : PP_Doc
   alternatives:
      alternative Named:
         child strict         : {Bool}
         child name           : {String}
         child tp             : Type 
-}
-- cata
sem_NamedType :: NamedType  ->
                 T_NamedType 
sem_NamedType !(Named _strict _name _tp )  =
    (sem_NamedType_Named _strict _name (sem_Type _tp ) )
-- semantic domain
newtype T_NamedType  = T_NamedType (Bool ->
                                    ( PP_Doc))
data Inh_NamedType  = Inh_NamedType {nested_Inh_NamedType :: !(Bool)}
data Syn_NamedType  = Syn_NamedType {pp_Syn_NamedType :: !(PP_Doc)}
wrap_NamedType :: T_NamedType  ->
                  Inh_NamedType  ->
                  Syn_NamedType 
wrap_NamedType !(T_NamedType sem ) !(Inh_NamedType _lhsInested )  =
    (let ( !_lhsOpp) = sem _lhsInested 
     in  (Syn_NamedType _lhsOpp ))
sem_NamedType_Named :: Bool ->
                       String ->
                       T_Type  ->
                       T_NamedType 
sem_NamedType_Named !strict_ !name_ !(T_Type tp_ )  =
    (T_NamedType (\ (!_lhsInested) ->
                      (case (({-# LINE 51 "PrintCode.ag" #-}
                              _lhsInested
                              {-# LINE 2871 "PrintCode.hs" #-}
                              )) of
                       { !_tpOnested ->
                       (case (tp_ _tpOnested ) of
                        { ( !_tpIpp,!_tpIprec) ->
                            (case (({-# LINE 225 "PrintCode.ag" #-}
                                    if strict_
                                    then name_ >#< "::" >#< "!" >|< pp_parens _tpIpp
                                    else name_ >#< "::" >#< _tpIpp
                                    {-# LINE 2880 "PrintCode.hs" #-}
                                    )) of
                             { !_lhsOpp ->
                             ( _lhsOpp) }) }) })) )
-- NamedTypes --------------------------------------------------
{-
   visit 0:
      inherited attribute:
         nested               : Bool
      synthesized attribute:
         pps                  : PP_Docs
   alternatives:
      alternative Cons:
         child hd             : NamedType 
         child tl             : NamedTypes 
      alternative Nil:
-}
-- cata
sem_NamedTypes :: NamedTypes  ->
                  T_NamedTypes 
sem_NamedTypes !list  =
    (Prelude.foldr sem_NamedTypes_Cons sem_NamedTypes_Nil (Prelude.map sem_NamedType list) )
-- semantic domain
newtype T_NamedTypes  = T_NamedTypes (Bool ->
                                      ( PP_Docs))
data Inh_NamedTypes  = Inh_NamedTypes {nested_Inh_NamedTypes :: !(Bool)}
data Syn_NamedTypes  = Syn_NamedTypes {pps_Syn_NamedTypes :: !(PP_Docs)}
wrap_NamedTypes :: T_NamedTypes  ->
                   Inh_NamedTypes  ->
                   Syn_NamedTypes 
wrap_NamedTypes !(T_NamedTypes sem ) !(Inh_NamedTypes _lhsInested )  =
    (let ( !_lhsOpps) = sem _lhsInested 
     in  (Syn_NamedTypes _lhsOpps ))
sem_NamedTypes_Cons :: T_NamedType  ->
                       T_NamedTypes  ->
                       T_NamedTypes 
sem_NamedTypes_Cons !(T_NamedType hd_ ) !(T_NamedTypes tl_ )  =
    (T_NamedTypes (\ (!_lhsInested) ->
                       (case (({-# LINE 53 "PrintCode.ag" #-}
                               _lhsInested
                               {-# LINE 2920 "PrintCode.hs" #-}
                               )) of
                        { !_tlOnested ->
                        (case (({-# LINE 51 "PrintCode.ag" #-}
                                _lhsInested
                                {-# LINE 2925 "PrintCode.hs" #-}
                                )) of
                         { !_hdOnested ->
                         (case (tl_ _tlOnested ) of
                          { ( !_tlIpps) ->
                              (case (hd_ _hdOnested ) of
                               { ( !_hdIpp) ->
                                   (case (({-# LINE 80 "PrintCode.ag" #-}
                                           _hdIpp : _tlIpps
                                           {-# LINE 2934 "PrintCode.hs" #-}
                                           )) of
                                    { !_lhsOpps ->
                                    ( _lhsOpps) }) }) }) }) })) )
sem_NamedTypes_Nil :: T_NamedTypes 
sem_NamedTypes_Nil  =
    (T_NamedTypes (\ (!_lhsInested) ->
                       (case (({-# LINE 81 "PrintCode.ag" #-}
                               []
                               {-# LINE 2943 "PrintCode.hs" #-}
                               )) of
                        { !_lhsOpps ->
                        ( _lhsOpps) })) )
-- Pattern -----------------------------------------------------
{-
   visit 0:
      inherited attributes:
         belowIrrefutable     : Bool
         isDeclOfLet          : Bool
         options              : Options
      synthesized attributes:
         copy                 : SELF 
         isUnderscore         : Bool
         pp                   : PP_Doc
         pp'                  : PP_Doc
         strictVars           : [PP_Doc]
   alternatives:
      alternative Alias:
         child field          : {Identifier}
         child attr           : {Identifier}
         child pat            : Pattern 
         child parts          : Patterns 
         visit 0:
            local copy        : _
            local ppVar       : _
            local addBang     : _
            local ppVarBang   : _
            local strictPatVars : _
            local strictVar   : _
      alternative Constr:
         child name           : {ConstructorIdent}
         child pats           : Patterns 
         visit 0:
            local copy        : _
            local addBang     : _
      alternative Irrefutable:
         child pat            : Pattern 
         visit 0:
            local copy        : _
      alternative Product:
         child pos            : {Pos}
         child pats           : Patterns 
         visit 0:
            local copy        : _
            local addBang     : _
      alternative Underscore:
         child pos            : {Pos}
         visit 0:
            local copy        : _
-}
-- cata
sem_Pattern :: Pattern  ->
               T_Pattern 
sem_Pattern !(Alias _field _attr _pat _parts )  =
    (sem_Pattern_Alias _field _attr (sem_Pattern _pat ) (sem_Patterns _parts ) )
sem_Pattern !(Constr _name _pats )  =
    (sem_Pattern_Constr _name (sem_Patterns _pats ) )
sem_Pattern !(Irrefutable _pat )  =
    (sem_Pattern_Irrefutable (sem_Pattern _pat ) )
sem_Pattern !(Product _pos _pats )  =
    (sem_Pattern_Product _pos (sem_Patterns _pats ) )
sem_Pattern !(Underscore _pos )  =
    (sem_Pattern_Underscore _pos )
-- semantic domain
newtype T_Pattern  = T_Pattern (Bool ->
                                Bool ->
                                Options ->
                                ( Pattern ,Bool,PP_Doc,PP_Doc,([PP_Doc])))
data Inh_Pattern  = Inh_Pattern {belowIrrefutable_Inh_Pattern :: !(Bool),isDeclOfLet_Inh_Pattern :: !(Bool),options_Inh_Pattern :: !(Options)}
data Syn_Pattern  = Syn_Pattern {copy_Syn_Pattern :: !(Pattern ),isUnderscore_Syn_Pattern :: !(Bool),pp_Syn_Pattern :: !(PP_Doc),pp'_Syn_Pattern :: !(PP_Doc),strictVars_Syn_Pattern :: !(([PP_Doc]))}
wrap_Pattern :: T_Pattern  ->
                Inh_Pattern  ->
                Syn_Pattern 
wrap_Pattern !(T_Pattern sem ) !(Inh_Pattern _lhsIbelowIrrefutable _lhsIisDeclOfLet _lhsIoptions )  =
    (let ( !_lhsOcopy,!_lhsOisUnderscore,!_lhsOpp,!_lhsOpp',!_lhsOstrictVars) = sem _lhsIbelowIrrefutable _lhsIisDeclOfLet _lhsIoptions 
     in  (Syn_Pattern _lhsOcopy _lhsOisUnderscore _lhsOpp _lhsOpp' _lhsOstrictVars ))
sem_Pattern_Alias :: Identifier ->
                     Identifier ->
                     T_Pattern  ->
                     T_Patterns  ->
                     T_Pattern 
sem_Pattern_Alias !field_ !attr_ !(T_Pattern pat_ ) !(T_Patterns parts_ )  =
    (T_Pattern (\ (!_lhsIbelowIrrefutable)
                  (!_lhsIisDeclOfLet)
                  (!_lhsIoptions) ->
                    (case (({-# LINE 49 "PrintCode.ag" #-}
                            _lhsIoptions
                            {-# LINE 3031 "PrintCode.hs" #-}
                            )) of
                     { !_partsOoptions ->
                     (case (({-# LINE 403 "PrintCode.ag" #-}
                             _lhsIisDeclOfLet
                             {-# LINE 3036 "PrintCode.hs" #-}
                             )) of
                      { !_partsOisDeclOfLet ->
                      (case (({-# LINE 369 "PrintCode.ag" #-}
                              _lhsIbelowIrrefutable
                              {-# LINE 3041 "PrintCode.hs" #-}
                              )) of
                       { !_partsObelowIrrefutable ->
                       (case (parts_ _partsObelowIrrefutable _partsOisDeclOfLet _partsOoptions ) of
                        { ( !_partsIcopy,!_partsIpps,!_partsIpps',!_partsIstrictVars) ->
                            (case (({-# LINE 49 "PrintCode.ag" #-}
                                    _lhsIoptions
                                    {-# LINE 3048 "PrintCode.hs" #-}
                                    )) of
                             { !_patOoptions ->
                             (case (({-# LINE 403 "PrintCode.ag" #-}
                                     _lhsIisDeclOfLet
                                     {-# LINE 3053 "PrintCode.hs" #-}
                                     )) of
                              { !_patOisDeclOfLet ->
                              (case (({-# LINE 369 "PrintCode.ag" #-}
                                      _lhsIbelowIrrefutable
                                      {-# LINE 3058 "PrintCode.hs" #-}
                                      )) of
                               { !_patObelowIrrefutable ->
                               (case (pat_ _patObelowIrrefutable _patOisDeclOfLet _patOoptions ) of
                                { ( !_patIcopy,!_patIisUnderscore,!_patIpp,!_patIpp',!_patIstrictVars) ->
                                    (case (({-# LINE 23 "./Patterns.ag" #-}
                                            Alias field_ attr_ _patIcopy _partsIcopy
                                            {-# LINE 3065 "PrintCode.hs" #-}
                                            )) of
                                     { !_copy ->
                                     (case (({-# LINE 23 "./Patterns.ag" #-}
                                             _copy
                                             {-# LINE 3070 "PrintCode.hs" #-}
                                             )) of
                                      { !_lhsOcopy ->
                                      (case (({-# LINE 366 "PrintCode.ag" #-}
                                              False
                                              {-# LINE 3075 "PrintCode.hs" #-}
                                              )) of
                                       { !_lhsOisUnderscore ->
                                       (case (({-# LINE 355 "PrintCode.ag" #-}
                                               pp (attrname False field_ attr_)
                                               {-# LINE 3080 "PrintCode.hs" #-}
                                               )) of
                                        { !_ppVar ->
                                        (case (({-# LINE 348 "PrintCode.ag" #-}
                                                if bangpats _lhsIoptions && not _lhsIisDeclOfLet && not _lhsIbelowIrrefutable
                                                then \p -> "!" >|< p
                                                else id
                                                {-# LINE 3087 "PrintCode.hs" #-}
                                                )) of
                                         { !_addBang ->
                                         (case (({-# LINE 356 "PrintCode.ag" #-}
                                                 _addBang     $ _ppVar
                                                 {-# LINE 3092 "PrintCode.hs" #-}
                                                 )) of
                                          { !_ppVarBang ->
                                          (case (({-# LINE 357 "PrintCode.ag" #-}
                                                  if _patIisUnderscore
                                                   then _ppVarBang
                                                   else _ppVarBang     >|< "@" >|< _patIpp
                                                  {-# LINE 3099 "PrintCode.hs" #-}
                                                  )) of
                                           { !_lhsOpp ->
                                           (case (({-# LINE 389 "PrintCode.ag" #-}
                                                   let attribute | field_ == _LOC || field_ == nullIdent = locname' attr_
                                                                 | otherwise                             = attrname False field_ attr_
                                                   in attribute >|< "@" >|< _patIpp'
                                                   {-# LINE 3106 "PrintCode.hs" #-}
                                                   )) of
                                            { !_lhsOpp' ->
                                            (case (({-# LINE 329 "PrintCode.ag" #-}
                                                    if stricterCases _lhsIoptions && not _lhsIisDeclOfLet
                                                    then _patIstrictVars
                                                    else []
                                                    {-# LINE 3113 "PrintCode.hs" #-}
                                                    )) of
                                             { !_strictPatVars ->
                                             (case (({-# LINE 325 "PrintCode.ag" #-}
                                                     if strictCases _lhsIoptions && not _lhsIisDeclOfLet
                                                     then [_ppVar    ]
                                                     else []
                                                     {-# LINE 3120 "PrintCode.hs" #-}
                                                     )) of
                                              { !_strictVar ->
                                              (case (({-# LINE 333 "PrintCode.ag" #-}
                                                      _strictVar     ++ _strictPatVars
                                                      {-# LINE 3125 "PrintCode.hs" #-}
                                                      )) of
                                               { !_lhsOstrictVars ->
                                               ( _lhsOcopy,_lhsOisUnderscore,_lhsOpp,_lhsOpp',_lhsOstrictVars) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) })) )
sem_Pattern_Constr :: ConstructorIdent ->
                      T_Patterns  ->
                      T_Pattern 
sem_Pattern_Constr !name_ !(T_Patterns pats_ )  =
    (T_Pattern (\ (!_lhsIbelowIrrefutable)
                  (!_lhsIisDeclOfLet)
                  (!_lhsIoptions) ->
                    (case (({-# LINE 49 "PrintCode.ag" #-}
                            _lhsIoptions
                            {-# LINE 3138 "PrintCode.hs" #-}
                            )) of
                     { !_patsOoptions ->
                     (case (({-# LINE 403 "PrintCode.ag" #-}
                             _lhsIisDeclOfLet
                             {-# LINE 3143 "PrintCode.hs" #-}
                             )) of
                      { !_patsOisDeclOfLet ->
                      (case (({-# LINE 369 "PrintCode.ag" #-}
                              _lhsIbelowIrrefutable
                              {-# LINE 3148 "PrintCode.hs" #-}
                              )) of
                       { !_patsObelowIrrefutable ->
                       (case (pats_ _patsObelowIrrefutable _patsOisDeclOfLet _patsOoptions ) of
                        { ( !_patsIcopy,!_patsIpps,!_patsIpps',!_patsIstrictVars) ->
                            (case (({-# LINE 23 "./Patterns.ag" #-}
                                    Constr name_ _patsIcopy
                                    {-# LINE 3155 "PrintCode.hs" #-}
                                    )) of
                             { !_copy ->
                             (case (({-# LINE 23 "./Patterns.ag" #-}
                                     _copy
                                     {-# LINE 3160 "PrintCode.hs" #-}
                                     )) of
                              { !_lhsOcopy ->
                              (case (({-# LINE 364 "PrintCode.ag" #-}
                                      False
                                      {-# LINE 3165 "PrintCode.hs" #-}
                                      )) of
                               { !_lhsOisUnderscore ->
                               (case (({-# LINE 348 "PrintCode.ag" #-}
                                       if bangpats _lhsIoptions && not _lhsIisDeclOfLet && not _lhsIbelowIrrefutable
                                       then \p -> "!" >|< p
                                       else id
                                       {-# LINE 3172 "PrintCode.hs" #-}
                                       )) of
                                { !_addBang ->
                                (case (({-# LINE 353 "PrintCode.ag" #-}
                                        _addBang     $ pp_parens $ name_ >#< hv_sp _patsIpps
                                        {-# LINE 3177 "PrintCode.hs" #-}
                                        )) of
                                 { !_lhsOpp ->
                                 (case (({-# LINE 387 "PrintCode.ag" #-}
                                         pp_parens $ name_ >#< hv_sp (map pp_parens _patsIpps')
                                         {-# LINE 3182 "PrintCode.hs" #-}
                                         )) of
                                  { !_lhsOpp' ->
                                  (case (({-# LINE 322 "PrintCode.ag" #-}
                                          _patsIstrictVars
                                          {-# LINE 3187 "PrintCode.hs" #-}
                                          )) of
                                   { !_lhsOstrictVars ->
                                   ( _lhsOcopy,_lhsOisUnderscore,_lhsOpp,_lhsOpp',_lhsOstrictVars) }) }) }) }) }) }) }) }) }) }) })) )
sem_Pattern_Irrefutable :: T_Pattern  ->
                           T_Pattern 
sem_Pattern_Irrefutable !(T_Pattern pat_ )  =
    (T_Pattern (\ (!_lhsIbelowIrrefutable)
                  (!_lhsIisDeclOfLet)
                  (!_lhsIoptions) ->
                    (case (({-# LINE 49 "PrintCode.ag" #-}
                            _lhsIoptions
                            {-# LINE 3199 "PrintCode.hs" #-}
                            )) of
                     { !_patOoptions ->
                     (case (({-# LINE 403 "PrintCode.ag" #-}
                             _lhsIisDeclOfLet
                             {-# LINE 3204 "PrintCode.hs" #-}
                             )) of
                      { !_patOisDeclOfLet ->
                      (case (({-# LINE 372 "PrintCode.ag" #-}
                              True
                              {-# LINE 3209 "PrintCode.hs" #-}
                              )) of
                       { !_patObelowIrrefutable ->
                       (case (pat_ _patObelowIrrefutable _patOisDeclOfLet _patOoptions ) of
                        { ( !_patIcopy,!_patIisUnderscore,!_patIpp,!_patIpp',!_patIstrictVars) ->
                            (case (({-# LINE 23 "./Patterns.ag" #-}
                                    Irrefutable _patIcopy
                                    {-# LINE 3216 "PrintCode.hs" #-}
                                    )) of
                             { !_copy ->
                             (case (({-# LINE 23 "./Patterns.ag" #-}
                                     _copy
                                     {-# LINE 3221 "PrintCode.hs" #-}
                                     )) of
                              { !_lhsOcopy ->
                              (case (({-# LINE 363 "PrintCode.ag" #-}
                                      _patIisUnderscore
                                      {-# LINE 3226 "PrintCode.hs" #-}
                                      )) of
                               { !_lhsOisUnderscore ->
                               (case (({-# LINE 360 "PrintCode.ag" #-}
                                       text "~" >|< pp_parens _patIpp
                                       {-# LINE 3231 "PrintCode.hs" #-}
                                       )) of
                                { !_lhsOpp ->
                                (case (({-# LINE 392 "PrintCode.ag" #-}
                                        text "~" >|< pp_parens _patIpp
                                        {-# LINE 3236 "PrintCode.hs" #-}
                                        )) of
                                 { !_lhsOpp' ->
                                 (case (({-# LINE 336 "PrintCode.ag" #-}
                                         []
                                         {-# LINE 3241 "PrintCode.hs" #-}
                                         )) of
                                  { !_lhsOstrictVars ->
                                  ( _lhsOcopy,_lhsOisUnderscore,_lhsOpp,_lhsOpp',_lhsOstrictVars) }) }) }) }) }) }) }) }) }) })) )
sem_Pattern_Product :: Pos ->
                       T_Patterns  ->
                       T_Pattern 
sem_Pattern_Product !pos_ !(T_Patterns pats_ )  =
    (T_Pattern (\ (!_lhsIbelowIrrefutable)
                  (!_lhsIisDeclOfLet)
                  (!_lhsIoptions) ->
                    (case (({-# LINE 49 "PrintCode.ag" #-}
                            _lhsIoptions
                            {-# LINE 3254 "PrintCode.hs" #-}
                            )) of
                     { !_patsOoptions ->
                     (case (({-# LINE 403 "PrintCode.ag" #-}
                             _lhsIisDeclOfLet
                             {-# LINE 3259 "PrintCode.hs" #-}
                             )) of
                      { !_patsOisDeclOfLet ->
                      (case (({-# LINE 369 "PrintCode.ag" #-}
                              _lhsIbelowIrrefutable
                              {-# LINE 3264 "PrintCode.hs" #-}
                              )) of
                       { !_patsObelowIrrefutable ->
                       (case (pats_ _patsObelowIrrefutable _patsOisDeclOfLet _patsOoptions ) of
                        { ( !_patsIcopy,!_patsIpps,!_patsIpps',!_patsIstrictVars) ->
                            (case (({-# LINE 23 "./Patterns.ag" #-}
                                    Product pos_ _patsIcopy
                                    {-# LINE 3271 "PrintCode.hs" #-}
                                    )) of
                             { !_copy ->
                             (case (({-# LINE 23 "./Patterns.ag" #-}
                                     _copy
                                     {-# LINE 3276 "PrintCode.hs" #-}
                                     )) of
                              { !_lhsOcopy ->
                              (case (({-# LINE 365 "PrintCode.ag" #-}
                                      False
                                      {-# LINE 3281 "PrintCode.hs" #-}
                                      )) of
                               { !_lhsOisUnderscore ->
                               (case (({-# LINE 348 "PrintCode.ag" #-}
                                       if bangpats _lhsIoptions && not _lhsIisDeclOfLet && not _lhsIbelowIrrefutable
                                       then \p -> "!" >|< p
                                       else id
                                       {-# LINE 3288 "PrintCode.hs" #-}
                                       )) of
                                { !_addBang ->
                                (case (({-# LINE 354 "PrintCode.ag" #-}
                                        _addBang     $ pp_block "(" ")" "," _patsIpps
                                        {-# LINE 3293 "PrintCode.hs" #-}
                                        )) of
                                 { !_lhsOpp ->
                                 (case (({-# LINE 388 "PrintCode.ag" #-}
                                         pp_block "(" ")" "," _patsIpps'
                                         {-# LINE 3298 "PrintCode.hs" #-}
                                         )) of
                                  { !_lhsOpp' ->
                                  (case (({-# LINE 322 "PrintCode.ag" #-}
                                          _patsIstrictVars
                                          {-# LINE 3303 "PrintCode.hs" #-}
                                          )) of
                                   { !_lhsOstrictVars ->
                                   ( _lhsOcopy,_lhsOisUnderscore,_lhsOpp,_lhsOpp',_lhsOstrictVars) }) }) }) }) }) }) }) }) }) }) })) )
sem_Pattern_Underscore :: Pos ->
                          T_Pattern 
sem_Pattern_Underscore !pos_  =
    (T_Pattern (\ (!_lhsIbelowIrrefutable)
                  (!_lhsIisDeclOfLet)
                  (!_lhsIoptions) ->
                    (case (({-# LINE 23 "./Patterns.ag" #-}
                            Underscore pos_
                            {-# LINE 3315 "PrintCode.hs" #-}
                            )) of
                     { !_copy ->
                     (case (({-# LINE 23 "./Patterns.ag" #-}
                             _copy
                             {-# LINE 3320 "PrintCode.hs" #-}
                             )) of
                      { !_lhsOcopy ->
                      (case (({-# LINE 367 "PrintCode.ag" #-}
                              True
                              {-# LINE 3325 "PrintCode.hs" #-}
                              )) of
                       { !_lhsOisUnderscore ->
                       (case (({-# LINE 361 "PrintCode.ag" #-}
                               text "_"
                               {-# LINE 3330 "PrintCode.hs" #-}
                               )) of
                        { !_lhsOpp ->
                        (case (({-# LINE 393 "PrintCode.ag" #-}
                                text "_"
                                {-# LINE 3335 "PrintCode.hs" #-}
                                )) of
                         { !_lhsOpp' ->
                         (case (({-# LINE 322 "PrintCode.ag" #-}
                                 []
                                 {-# LINE 3340 "PrintCode.hs" #-}
                                 )) of
                          { !_lhsOstrictVars ->
                          ( _lhsOcopy,_lhsOisUnderscore,_lhsOpp,_lhsOpp',_lhsOstrictVars) }) }) }) }) }) })) )
-- Patterns ----------------------------------------------------
{-
   visit 0:
      inherited attributes:
         belowIrrefutable     : Bool
         isDeclOfLet          : Bool
         options              : Options
      synthesized attributes:
         copy                 : SELF 
         pps                  : [PP_Doc]
         pps'                 : [PP_Doc]
         strictVars           : [PP_Doc]
   alternatives:
      alternative Cons:
         child hd             : Pattern 
         child tl             : Patterns 
         visit 0:
            local copy        : _
      alternative Nil:
         visit 0:
            local copy        : _
-}
-- cata
sem_Patterns :: Patterns  ->
                T_Patterns 
sem_Patterns !list  =
    (Prelude.foldr sem_Patterns_Cons sem_Patterns_Nil (Prelude.map sem_Pattern list) )
-- semantic domain
newtype T_Patterns  = T_Patterns (Bool ->
                                  Bool ->
                                  Options ->
                                  ( Patterns ,([PP_Doc]),([PP_Doc]),([PP_Doc])))
data Inh_Patterns  = Inh_Patterns {belowIrrefutable_Inh_Patterns :: !(Bool),isDeclOfLet_Inh_Patterns :: !(Bool),options_Inh_Patterns :: !(Options)}
data Syn_Patterns  = Syn_Patterns {copy_Syn_Patterns :: !(Patterns ),pps_Syn_Patterns :: !(([PP_Doc])),pps'_Syn_Patterns :: !(([PP_Doc])),strictVars_Syn_Patterns :: !(([PP_Doc]))}
wrap_Patterns :: T_Patterns  ->
                 Inh_Patterns  ->
                 Syn_Patterns 
wrap_Patterns !(T_Patterns sem ) !(Inh_Patterns _lhsIbelowIrrefutable _lhsIisDeclOfLet _lhsIoptions )  =
    (let ( !_lhsOcopy,!_lhsOpps,!_lhsOpps',!_lhsOstrictVars) = sem _lhsIbelowIrrefutable _lhsIisDeclOfLet _lhsIoptions 
     in  (Syn_Patterns _lhsOcopy _lhsOpps _lhsOpps' _lhsOstrictVars ))
sem_Patterns_Cons :: T_Pattern  ->
                     T_Patterns  ->
                     T_Patterns 
sem_Patterns_Cons !(T_Pattern hd_ ) !(T_Patterns tl_ )  =
    (T_Patterns (\ (!_lhsIbelowIrrefutable)
                   (!_lhsIisDeclOfLet)
                   (!_lhsIoptions) ->
                     (case (({-# LINE 49 "PrintCode.ag" #-}
                             _lhsIoptions
                             {-# LINE 3393 "PrintCode.hs" #-}
                             )) of
                      { !_tlOoptions ->
                      (case (({-# LINE 403 "PrintCode.ag" #-}
                              _lhsIisDeclOfLet
                              {-# LINE 3398 "PrintCode.hs" #-}
                              )) of
                       { !_tlOisDeclOfLet ->
                       (case (({-# LINE 369 "PrintCode.ag" #-}
                               _lhsIbelowIrrefutable
                               {-# LINE 3403 "PrintCode.hs" #-}
                               )) of
                        { !_tlObelowIrrefutable ->
                        (case (tl_ _tlObelowIrrefutable _tlOisDeclOfLet _tlOoptions ) of
                         { ( !_tlIcopy,!_tlIpps,!_tlIpps',!_tlIstrictVars) ->
                             (case (({-# LINE 49 "PrintCode.ag" #-}
                                     _lhsIoptions
                                     {-# LINE 3410 "PrintCode.hs" #-}
                                     )) of
                              { !_hdOoptions ->
                              (case (({-# LINE 403 "PrintCode.ag" #-}
                                      _lhsIisDeclOfLet
                                      {-# LINE 3415 "PrintCode.hs" #-}
                                      )) of
                               { !_hdOisDeclOfLet ->
                               (case (({-# LINE 369 "PrintCode.ag" #-}
                                       _lhsIbelowIrrefutable
                                       {-# LINE 3420 "PrintCode.hs" #-}
                                       )) of
                                { !_hdObelowIrrefutable ->
                                (case (hd_ _hdObelowIrrefutable _hdOisDeclOfLet _hdOoptions ) of
                                 { ( !_hdIcopy,!_hdIisUnderscore,!_hdIpp,!_hdIpp',!_hdIstrictVars) ->
                                     (case (({-# LINE 23 "./Patterns.ag" #-}
                                             (:) _hdIcopy _tlIcopy
                                             {-# LINE 3427 "PrintCode.hs" #-}
                                             )) of
                                      { !_copy ->
                                      (case (({-# LINE 23 "./Patterns.ag" #-}
                                              _copy
                                              {-# LINE 3432 "PrintCode.hs" #-}
                                              )) of
                                       { !_lhsOcopy ->
                                       (case (({-# LINE 343 "PrintCode.ag" #-}
                                               _hdIpp : _tlIpps
                                               {-# LINE 3437 "PrintCode.hs" #-}
                                               )) of
                                        { !_lhsOpps ->
                                        (case (({-# LINE 383 "PrintCode.ag" #-}
                                                _hdIpp' : _tlIpps'
                                                {-# LINE 3442 "PrintCode.hs" #-}
                                                )) of
                                         { !_lhsOpps' ->
                                         (case (({-# LINE 322 "PrintCode.ag" #-}
                                                 _hdIstrictVars ++ _tlIstrictVars
                                                 {-# LINE 3447 "PrintCode.hs" #-}
                                                 )) of
                                          { !_lhsOstrictVars ->
                                          ( _lhsOcopy,_lhsOpps,_lhsOpps',_lhsOstrictVars) }) }) }) }) }) }) }) }) }) }) }) }) })) )
sem_Patterns_Nil :: T_Patterns 
sem_Patterns_Nil  =
    (T_Patterns (\ (!_lhsIbelowIrrefutable)
                   (!_lhsIisDeclOfLet)
                   (!_lhsIoptions) ->
                     (case (({-# LINE 23 "./Patterns.ag" #-}
                             []
                             {-# LINE 3458 "PrintCode.hs" #-}
                             )) of
                      { !_copy ->
                      (case (({-# LINE 23 "./Patterns.ag" #-}
                              _copy
                              {-# LINE 3463 "PrintCode.hs" #-}
                              )) of
                       { !_lhsOcopy ->
                       (case (({-# LINE 344 "PrintCode.ag" #-}
                               []
                               {-# LINE 3468 "PrintCode.hs" #-}
                               )) of
                        { !_lhsOpps ->
                        (case (({-# LINE 384 "PrintCode.ag" #-}
                                []
                                {-# LINE 3473 "PrintCode.hs" #-}
                                )) of
                         { !_lhsOpps' ->
                         (case (({-# LINE 322 "PrintCode.ag" #-}
                                 []
                                 {-# LINE 3478 "PrintCode.hs" #-}
                                 )) of
                          { !_lhsOstrictVars ->
                          ( _lhsOcopy,_lhsOpps,_lhsOpps',_lhsOstrictVars) }) }) }) }) })) )
-- Program -----------------------------------------------------
{-
   visit 0:
      inherited attributes:
         importBlocks         : PP_Doc
         mainFile             : String
         mainName             : String
         moduleHeader         : String -> String -> String -> Bool -> String
         options              : Options
         optionsLine          : String
         pragmaBlocks         : String
         textBlockMap         : Map BlockInfo PP_Doc
         textBlocks           : PP_Doc
      synthesized attributes:
         genIO                : IO ()
         output               : PP_Docs
   alternatives:
      alternative Program:
         child chunks         : Chunks 
         child ordered        : {Bool}
         visit 0:
            local options     : _
            local commonFile  : _
            local genCommonModule : _
            local mainModuleFile : _
            local genMainModule : _
-}
-- cata
sem_Program :: Program  ->
               T_Program 
sem_Program !(Program _chunks _ordered )  =
    (sem_Program_Program (sem_Chunks _chunks ) _ordered )
-- semantic domain
newtype T_Program  = T_Program (PP_Doc ->
                                String ->
                                String ->
                                (String -> String -> String -> Bool -> String) ->
                                Options ->
                                String ->
                                String ->
                                (Map BlockInfo PP_Doc) ->
                                PP_Doc ->
                                ( (IO ()),PP_Docs))
data Inh_Program  = Inh_Program {importBlocks_Inh_Program :: !(PP_Doc),mainFile_Inh_Program :: !(String),mainName_Inh_Program :: !(String),moduleHeader_Inh_Program :: !((String -> String -> String -> Bool -> String)),options_Inh_Program :: !(Options),optionsLine_Inh_Program :: !(String),pragmaBlocks_Inh_Program :: !(String),textBlockMap_Inh_Program :: !((Map BlockInfo PP_Doc)),textBlocks_Inh_Program :: !(PP_Doc)}
data Syn_Program  = Syn_Program {genIO_Syn_Program :: !((IO ())),output_Syn_Program :: !(PP_Docs)}
wrap_Program :: T_Program  ->
                Inh_Program  ->
                Syn_Program 
wrap_Program !(T_Program sem ) !(Inh_Program _lhsIimportBlocks _lhsImainFile _lhsImainName _lhsImoduleHeader _lhsIoptions _lhsIoptionsLine _lhsIpragmaBlocks _lhsItextBlockMap _lhsItextBlocks )  =
    (let ( !_lhsOgenIO,!_lhsOoutput) = sem _lhsIimportBlocks _lhsImainFile _lhsImainName _lhsImoduleHeader _lhsIoptions _lhsIoptionsLine _lhsIpragmaBlocks _lhsItextBlockMap _lhsItextBlocks 
     in  (Syn_Program _lhsOgenIO _lhsOoutput ))
sem_Program_Program :: T_Chunks  ->
                       Bool ->
                       T_Program 
sem_Program_Program !(T_Chunks chunks_ ) !ordered_  =
    (T_Program (\ (!_lhsIimportBlocks)
                  (!_lhsImainFile)
                  (!_lhsImainName)
                  (!_lhsImoduleHeader)
                  (!_lhsIoptions)
                  (!_lhsIoptionsLine)
                  (!_lhsIpragmaBlocks)
                  (!_lhsItextBlockMap)
                  (!_lhsItextBlocks) ->
                    (case (({-# LINE 431 "PrintCode.ag" #-}
                            _lhsItextBlockMap
                            {-# LINE 3548 "PrintCode.hs" #-}
                            )) of
                     { !_chunksOtextBlockMap ->
                     (case (({-# LINE 429 "PrintCode.ag" #-}
                             _lhsIpragmaBlocks
                             {-# LINE 3553 "PrintCode.hs" #-}
                             )) of
                      { !_chunksOpragmaBlocks ->
                      (case (({-# LINE 432 "PrintCode.ag" #-}
                              _lhsIoptionsLine
                              {-# LINE 3558 "PrintCode.hs" #-}
                              )) of
                       { !_chunksOoptionsLine ->
                       (case (({-# LINE 58 "PrintCode.ag" #-}
                               _lhsIoptions { breadthFirst = breadthFirst _lhsIoptions && visit _lhsIoptions && cases _lhsIoptions && ordered_ }
                               {-# LINE 3563 "PrintCode.hs" #-}
                               )) of
                        { !_options ->
                        (case (({-# LINE 49 "PrintCode.ag" #-}
                                _options
                                {-# LINE 3568 "PrintCode.hs" #-}
                                )) of
                         { !_chunksOoptions ->
                         (case (({-# LINE 435 "PrintCode.ag" #-}
                                 _lhsImoduleHeader
                                 {-# LINE 3573 "PrintCode.hs" #-}
                                 )) of
                          { !_chunksOmoduleHeader ->
                          (case (({-# LINE 434 "PrintCode.ag" #-}
                                  _lhsImainName
                                  {-# LINE 3578 "PrintCode.hs" #-}
                                  )) of
                           { !_chunksOmainName ->
                           (case (({-# LINE 433 "PrintCode.ag" #-}
                                   _lhsImainFile
                                   {-# LINE 3583 "PrintCode.hs" #-}
                                   )) of
                            { !_chunksOmainFile ->
                            (case (({-# LINE 452 "PrintCode.ag" #-}
                                    _lhsImainFile ++ "_common.hs"
                                    {-# LINE 3588 "PrintCode.hs" #-}
                                    )) of
                             { !_commonFile ->
                             (case (({-# LINE 406 "PrintCode.ag" #-}
                                     False
                                     {-# LINE 3593 "PrintCode.hs" #-}
                                     )) of
                              { !_chunksOisDeclOfLet ->
                              (case (({-# LINE 61 "PrintCode.ag" #-}
                                      nest _lhsIoptions
                                      {-# LINE 3598 "PrintCode.hs" #-}
                                      )) of
                               { !_chunksOnested ->
                               (case (({-# LINE 430 "PrintCode.ag" #-}
                                       _lhsItextBlocks
                                       {-# LINE 3603 "PrintCode.hs" #-}
                                       )) of
                                { !_chunksOtextBlocks ->
                                (case (({-# LINE 428 "PrintCode.ag" #-}
                                        _lhsIimportBlocks
                                        {-# LINE 3608 "PrintCode.hs" #-}
                                        )) of
                                 { !_chunksOimportBlocks ->
                                 (case (chunks_ _chunksOimportBlocks _chunksOisDeclOfLet _chunksOmainFile _chunksOmainName _chunksOmoduleHeader _chunksOnested _chunksOoptions _chunksOoptionsLine _chunksOpragmaBlocks _chunksOtextBlockMap _chunksOtextBlocks ) of
                                  { ( !_chunksIappendCommon,!_chunksIappendMain,!_chunksIgenSems,!_chunksIimports,!_chunksIpps) ->
                                      (case (({-# LINE 453 "PrintCode.ag" #-}
                                              writeModule _commonFile
                                                  ( [ pp $ _lhsIpragmaBlocks
                                                    , pp $ _lhsIoptionsLine
                                                    , pp $ _lhsImoduleHeader _lhsImainName "_common" "" True
                                                    , _lhsIimportBlocks
                                                    , _lhsItextBlocks
                                                    ]
                                                    ++ map vlist _chunksIappendCommon
                                                  )
                                              {-# LINE 3623 "PrintCode.hs" #-}
                                              )) of
                                       { !_genCommonModule ->
                                       (case (({-# LINE 440 "PrintCode.ag" #-}
                                               _lhsImainFile ++ ".hs"
                                               {-# LINE 3628 "PrintCode.hs" #-}
                                               )) of
                                        { !_mainModuleFile ->
                                        (case (({-# LINE 441 "PrintCode.ag" #-}
                                                writeModule _mainModuleFile
                                                  ( [ pp $ _lhsIpragmaBlocks
                                                    , pp $ _lhsIoptionsLine
                                                    , pp $ _lhsImoduleHeader _lhsImainName "" "" False
                                                    , pp $ ("import " ++ _lhsImainName ++ "_common\n")
                                                    ]
                                                    ++ map pp _chunksIimports
                                                    ++ map vlist _chunksIappendMain
                                                  )
                                                {-# LINE 3641 "PrintCode.hs" #-}
                                                )) of
                                         { !_genMainModule ->
                                         (case (({-# LINE 464 "PrintCode.ag" #-}
                                                 do _genMainModule
                                                    _genCommonModule
                                                    _chunksIgenSems
                                                 {-# LINE 3648 "PrintCode.hs" #-}
                                                 )) of
                                          { !_lhsOgenIO ->
                                          (case (({-# LINE 93 "PrintCode.ag" #-}
                                                  _chunksIpps
                                                  {-# LINE 3653 "PrintCode.hs" #-}
                                                  )) of
                                           { !_lhsOoutput ->
                                           ( _lhsOgenIO,_lhsOoutput) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) }) })) )
-- Type --------------------------------------------------------
{-
   visit 0:
      inherited attribute:
         nested               : Bool
      synthesized attributes:
         pp                   : PP_Doc
         prec                 : Int
   alternatives:
      alternative Arr:
         child left           : Type 
         child right          : Type 
         visit 0:
            local r           : _
            local l           : _
      alternative CtxApp:
         child left           : {[(String, [String])]}
         child right          : Type 
      alternative List:
         child tp             : Type 
      alternative NontermType:
         child name           : {String}
         child params         : {[String]}
      alternative QuantApp:
         child left           : {String}
         child right          : Type 
      alternative SimpleType:
         child txt            : {String}
      alternative TEither:
         child left           : Type 
         child right          : Type 
      alternative TIntMap:
         child value          : Type 
      alternative TMap:
         child key            : Type 
         child value          : Type 
      alternative TMaybe:
         child tp             : Type 
      alternative TupleType:
         child tps            : Types 
      alternative TypeApp:
         child func           : Type 
         child args           : Types 
      alternative UnboxedTupleType:
         child tps            : Types 
-}
-- cata
sem_Type :: Type  ->
            T_Type 
sem_Type !(Arr _left _right )  =
    (sem_Type_Arr (sem_Type _left ) (sem_Type _right ) )
sem_Type !(CtxApp _left _right )  =
    (sem_Type_CtxApp _left (sem_Type _right ) )
sem_Type !(List _tp )  =
    (sem_Type_List (sem_Type _tp ) )
sem_Type !(NontermType _name _params )  =
    (sem_Type_NontermType _name _params )
sem_Type !(QuantApp _left _right )  =
    (sem_Type_QuantApp _left (sem_Type _right ) )
sem_Type !(SimpleType _txt )  =
    (sem_Type_SimpleType _txt )
sem_Type !(TEither _left _right )  =
    (sem_Type_TEither (sem_Type _left ) (sem_Type _right ) )
sem_Type !(TIntMap _value )  =
    (sem_Type_TIntMap (sem_Type _value ) )
sem_Type !(TMap _key _value )  =
    (sem_Type_TMap (sem_Type _key ) (sem_Type _value ) )
sem_Type !(TMaybe _tp )  =
    (sem_Type_TMaybe (sem_Type _tp ) )
sem_Type !(TupleType _tps )  =
    (sem_Type_TupleType (sem_Types _tps ) )
sem_Type !(TypeApp _func _args )  =
    (sem_Type_TypeApp (sem_Type _func ) (sem_Types _args ) )
sem_Type !(UnboxedTupleType _tps )  =
    (sem_Type_UnboxedTupleType (sem_Types _tps ) )
-- semantic domain
newtype T_Type  = T_Type (Bool ->
                          ( PP_Doc,Int))
data Inh_Type  = Inh_Type {nested_Inh_Type :: !(Bool)}
data Syn_Type  = Syn_Type {pp_Syn_Type :: !(PP_Doc),prec_Syn_Type :: !(Int)}
wrap_Type :: T_Type  ->
             Inh_Type  ->
             Syn_Type 
wrap_Type !(T_Type sem ) !(Inh_Type _lhsInested )  =
    (let ( !_lhsOpp,!_lhsOprec) = sem _lhsInested 
     in  (Syn_Type _lhsOpp _lhsOprec ))
sem_Type_Arr :: T_Type  ->
                T_Type  ->
                T_Type 
sem_Type_Arr !(T_Type left_ ) !(T_Type right_ )  =
    (T_Type (\ (!_lhsInested) ->
                 (case (({-# LINE 51 "PrintCode.ag" #-}
                         _lhsInested
                         {-# LINE 3750 "PrintCode.hs" #-}
                         )) of
                  { !_rightOnested ->
                  (case (({-# LINE 51 "PrintCode.ag" #-}
                          _lhsInested
                          {-# LINE 3755 "PrintCode.hs" #-}
                          )) of
                   { !_leftOnested ->
                   (case (right_ _rightOnested ) of
                    { ( !_rightIpp,!_rightIprec) ->
                        (case (({-# LINE 262 "PrintCode.ag" #-}
                                if _rightIprec <  2 then pp_parens _rightIpp else _rightIpp
                                {-# LINE 3762 "PrintCode.hs" #-}
                                )) of
                         { !_r ->
                         (case (left_ _leftOnested ) of
                          { ( !_leftIpp,!_leftIprec) ->
                              (case (({-# LINE 261 "PrintCode.ag" #-}
                                      if _leftIprec  <= 2 then pp_parens _leftIpp  else _leftIpp
                                      {-# LINE 3769 "PrintCode.hs" #-}
                                      )) of
                               { !_l ->
                               (case (({-# LINE 260 "PrintCode.ag" #-}
                                       _l     >#< "->" >-< _r
                                       {-# LINE 3774 "PrintCode.hs" #-}
                                       )) of
                                { !_lhsOpp ->
                                (case (({-# LINE 259 "PrintCode.ag" #-}
                                        2
                                        {-# LINE 3779 "PrintCode.hs" #-}
                                        )) of
                                 { !_lhsOprec ->
                                 ( _lhsOpp,_lhsOprec) }) }) }) }) }) }) }) })) )
sem_Type_CtxApp :: ([(String, [String])]) ->
                   T_Type  ->
                   T_Type 
sem_Type_CtxApp !left_ !(T_Type right_ )  =
    (T_Type (\ (!_lhsInested) ->
                 (case (({-# LINE 51 "PrintCode.ag" #-}
                         _lhsInested
                         {-# LINE 3790 "PrintCode.hs" #-}
                         )) of
                  { !_rightOnested ->
                  (case (right_ _rightOnested ) of
                   { ( !_rightIpp,!_rightIprec) ->
                       (case (({-# LINE 268 "PrintCode.ag" #-}
                               (pp_block "(" ")" "," $ map (\(n,ns) -> hv_sp $ map pp (n:ns)) left_) >#< "=>" >#< _rightIpp
                               {-# LINE 3797 "PrintCode.hs" #-}
                               )) of
                        { !_lhsOpp ->
                        (case (({-# LINE 258 "PrintCode.ag" #-}
                                _rightIprec
                                {-# LINE 3802 "PrintCode.hs" #-}
                                )) of
                         { !_lhsOprec ->
                         ( _lhsOpp,_lhsOprec) }) }) }) })) )
sem_Type_List :: T_Type  ->
                 T_Type 
sem_Type_List !(T_Type tp_ )  =
    (T_Type (\ (!_lhsInested) ->
                 (case (({-# LINE 51 "PrintCode.ag" #-}
                         _lhsInested
                         {-# LINE 3812 "PrintCode.hs" #-}
                         )) of
                  { !_tpOnested ->
                  (case (tp_ _tpOnested ) of
                   { ( !_tpIpp,!_tpIprec) ->
                       (case (({-# LINE 279 "PrintCode.ag" #-}
                               "[" >|< _tpIpp >|< "]"
                               {-# LINE 3819 "PrintCode.hs" #-}
                               )) of
                        { !_lhsOpp ->
                        (case (({-# LINE 278 "PrintCode.ag" #-}
                                5
                                {-# LINE 3824 "PrintCode.hs" #-}
                                )) of
                         { !_lhsOprec ->
                         ( _lhsOpp,_lhsOprec) }) }) }) })) )
sem_Type_NontermType :: String ->
                        ([String]) ->
                        T_Type 
sem_Type_NontermType !name_ !params_  =
    (T_Type (\ (!_lhsInested) ->
                 (case (({-# LINE 285 "PrintCode.ag" #-}
                         text name_ >#< hv_sp params_
                         {-# LINE 3835 "PrintCode.hs" #-}
                         )) of
                  { !_lhsOpp ->
                  (case (({-# LINE 284 "PrintCode.ag" #-}
                          5
                          {-# LINE 3840 "PrintCode.hs" #-}
                          )) of
                   { !_lhsOprec ->
                   ( _lhsOpp,_lhsOprec) }) })) )
sem_Type_QuantApp :: String ->
                     T_Type  ->
                     T_Type 
sem_Type_QuantApp !left_ !(T_Type right_ )  =
    (T_Type (\ (!_lhsInested) ->
                 (case (({-# LINE 51 "PrintCode.ag" #-}
                         _lhsInested
                         {-# LINE 3851 "PrintCode.hs" #-}
                         )) of
                  { !_rightOnested ->
                  (case (right_ _rightOnested ) of
                   { ( !_rightIpp,!_rightIprec) ->
                       (case (({-# LINE 270 "PrintCode.ag" #-}
                               left_ >#< _rightIpp
                               {-# LINE 3858 "PrintCode.hs" #-}
                               )) of
                        { !_lhsOpp ->
                        (case (({-# LINE 258 "PrintCode.ag" #-}
                                _rightIprec
                                {-# LINE 3863 "PrintCode.hs" #-}
                                )) of
                         { !_lhsOprec ->
                         ( _lhsOpp,_lhsOprec) }) }) }) })) )
sem_Type_SimpleType :: String ->
                       T_Type 
sem_Type_SimpleType !txt_  =
    (T_Type (\ (!_lhsInested) ->
                 (case (({-# LINE 282 "PrintCode.ag" #-}
                         if reallySimple txt_ then text txt_ else pp_parens (text txt_)
                         {-# LINE 3873 "PrintCode.hs" #-}
                         )) of
                  { !_lhsOpp ->
                  (case (({-# LINE 281 "PrintCode.ag" #-}
                          5
                          {-# LINE 3878 "PrintCode.hs" #-}
                          )) of
                   { !_lhsOprec ->
                   ( _lhsOpp,_lhsOprec) }) })) )
sem_Type_TEither :: T_Type  ->
                    T_Type  ->
                    T_Type 
sem_Type_TEither !(T_Type left_ ) !(T_Type right_ )  =
    (T_Type (\ (!_lhsInested) ->
                 (case (({-# LINE 51 "PrintCode.ag" #-}
                         _lhsInested
                         {-# LINE 3889 "PrintCode.hs" #-}
                         )) of
                  { !_rightOnested ->
                  (case (({-# LINE 51 "PrintCode.ag" #-}
                          _lhsInested
                          {-# LINE 3894 "PrintCode.hs" #-}
                          )) of
                   { !_leftOnested ->
                   (case (right_ _rightOnested ) of
                    { ( !_rightIpp,!_rightIprec) ->
                        (case (left_ _leftOnested ) of
                         { ( !_leftIpp,!_leftIprec) ->
                             (case (({-# LINE 289 "PrintCode.ag" #-}
                                     text "Either" >#< pp_parens _leftIpp >#< pp_parens _rightIpp
                                     {-# LINE 3903 "PrintCode.hs" #-}
                                     )) of
                              { !_lhsOpp ->
                              (case (({-# LINE 288 "PrintCode.ag" #-}
                                      5
                                      {-# LINE 3908 "PrintCode.hs" #-}
                                      )) of
                               { !_lhsOprec ->
                               ( _lhsOpp,_lhsOprec) }) }) }) }) }) })) )
sem_Type_TIntMap :: T_Type  ->
                    T_Type 
sem_Type_TIntMap !(T_Type value_ )  =
    (T_Type (\ (!_lhsInested) ->
                 (case (({-# LINE 51 "PrintCode.ag" #-}
                         _lhsInested
                         {-# LINE 3918 "PrintCode.hs" #-}
                         )) of
                  { !_valueOnested ->
                  (case (value_ _valueOnested ) of
                   { ( !_valueIpp,!_valueIprec) ->
                       (case (({-# LINE 293 "PrintCode.ag" #-}
                               text "IntMap" >#< pp_parens _valueIpp
                               {-# LINE 3925 "PrintCode.hs" #-}
                               )) of
                        { !_lhsOpp ->
                        (case (({-# LINE 292 "PrintCode.ag" #-}
                                5
                                {-# LINE 3930 "PrintCode.hs" #-}
                                )) of
                         { !_lhsOprec ->
                         ( _lhsOpp,_lhsOprec) }) }) }) })) )
sem_Type_TMap :: T_Type  ->
                 T_Type  ->
                 T_Type 
sem_Type_TMap !(T_Type key_ ) !(T_Type value_ )  =
    (T_Type (\ (!_lhsInested) ->
                 (case (({-# LINE 51 "PrintCode.ag" #-}
                         _lhsInested
                         {-# LINE 3941 "PrintCode.hs" #-}
                         )) of
                  { !_valueOnested ->
                  (case (({-# LINE 51 "PrintCode.ag" #-}
                          _lhsInested
                          {-# LINE 3946 "PrintCode.hs" #-}
                          )) of
                   { !_keyOnested ->
                   (case (value_ _valueOnested ) of
                    { ( !_valueIpp,!_valueIprec) ->
                        (case (key_ _keyOnested ) of
                         { ( !_keyIpp,!_keyIprec) ->
                             (case (({-# LINE 291 "PrintCode.ag" #-}
                                     text "Map" >#< pp_parens _keyIpp >#< pp_parens _valueIpp
                                     {-# LINE 3955 "PrintCode.hs" #-}
                                     )) of
                              { !_lhsOpp ->
                              (case (({-# LINE 290 "PrintCode.ag" #-}
                                      5
                                      {-# LINE 3960 "PrintCode.hs" #-}
                                      )) of
                               { !_lhsOprec ->
                               ( _lhsOpp,_lhsOprec) }) }) }) }) }) })) )
sem_Type_TMaybe :: T_Type  ->
                   T_Type 
sem_Type_TMaybe !(T_Type tp_ )  =
    (T_Type (\ (!_lhsInested) ->
                 (case (({-# LINE 51 "PrintCode.ag" #-}
                         _lhsInested
                         {-# LINE 3970 "PrintCode.hs" #-}
                         )) of
                  { !_tpOnested ->
                  (case (tp_ _tpOnested ) of
                   { ( !_tpIpp,!_tpIprec) ->
                       (case (({-# LINE 287 "PrintCode.ag" #-}
                               text "Maybe" >#< _tpIpp
                               {-# LINE 3977 "PrintCode.hs" #-}
                               )) of
                        { !_lhsOpp ->
                        (case (({-# LINE 286 "PrintCode.ag" #-}
                                5
                                {-# LINE 3982 "PrintCode.hs" #-}
                                )) of
                         { !_lhsOprec ->
                         ( _lhsOpp,_lhsOprec) }) }) }) })) )
sem_Type_TupleType :: T_Types  ->
                      T_Type 
sem_Type_TupleType !(T_Types tps_ )  =
    (T_Type (\ (!_lhsInested) ->
                 (case (({-# LINE 53 "PrintCode.ag" #-}
                         _lhsInested
                         {-# LINE 3992 "PrintCode.hs" #-}
                         )) of
                  { !_tpsOnested ->
                  (case (tps_ _tpsOnested ) of
                   { ( !_tpsIpps) ->
                       (case (({-# LINE 273 "PrintCode.ag" #-}
                               ppTuple _lhsInested _tpsIpps
                               {-# LINE 3999 "PrintCode.hs" #-}
                               )) of
                        { !_lhsOpp ->
                        (case (({-# LINE 272 "PrintCode.ag" #-}
                                5
                                {-# LINE 4004 "PrintCode.hs" #-}
                                )) of
                         { !_lhsOprec ->
                         ( _lhsOpp,_lhsOprec) }) }) }) })) )
sem_Type_TypeApp :: T_Type  ->
                    T_Types  ->
                    T_Type 
sem_Type_TypeApp !(T_Type func_ ) !(T_Types args_ )  =
    (T_Type (\ (!_lhsInested) ->
                 (case (({-# LINE 53 "PrintCode.ag" #-}
                         _lhsInested
                         {-# LINE 4015 "PrintCode.hs" #-}
                         )) of
                  { !_argsOnested ->
                  (case (({-# LINE 51 "PrintCode.ag" #-}
                          _lhsInested
                          {-# LINE 4020 "PrintCode.hs" #-}
                          )) of
                   { !_funcOnested ->
                   (case (args_ _argsOnested ) of
                    { ( !_argsIpps) ->
                        (case (func_ _funcOnested ) of
                         { ( !_funcIpp,!_funcIprec) ->
                             (case (({-# LINE 265 "PrintCode.ag" #-}
                                     hv_sp (_funcIpp : _argsIpps)
                                     {-# LINE 4029 "PrintCode.hs" #-}
                                     )) of
                              { !_lhsOpp ->
                              (case (({-# LINE 258 "PrintCode.ag" #-}
                                      _funcIprec
                                      {-# LINE 4034 "PrintCode.hs" #-}
                                      )) of
                               { !_lhsOprec ->
                               ( _lhsOpp,_lhsOprec) }) }) }) }) }) })) )
sem_Type_UnboxedTupleType :: T_Types  ->
                             T_Type 
sem_Type_UnboxedTupleType !(T_Types tps_ )  =
    (T_Type (\ (!_lhsInested) ->
                 (case (({-# LINE 53 "PrintCode.ag" #-}
                         _lhsInested
                         {-# LINE 4044 "PrintCode.hs" #-}
                         )) of
                  { !_tpsOnested ->
                  (case (tps_ _tpsOnested ) of
                   { ( !_tpsIpps) ->
                       (case (({-# LINE 276 "PrintCode.ag" #-}
                               ppUnboxedTuple _lhsInested _tpsIpps
                               {-# LINE 4051 "PrintCode.hs" #-}
                               )) of
                        { !_lhsOpp ->
                        (case (({-# LINE 275 "PrintCode.ag" #-}
                                5
                                {-# LINE 4056 "PrintCode.hs" #-}
                                )) of
                         { !_lhsOprec ->
                         ( _lhsOpp,_lhsOprec) }) }) }) })) )
-- Types -------------------------------------------------------
{-
   visit 0:
      inherited attribute:
         nested               : Bool
      synthesized attribute:
         pps                  : PP_Docs
   alternatives:
      alternative Cons:
         child hd             : Type 
         child tl             : Types 
      alternative Nil:
-}
-- cata
sem_Types :: Types  ->
             T_Types 
sem_Types !list  =
    (Prelude.foldr sem_Types_Cons sem_Types_Nil (Prelude.map sem_Type list) )
-- semantic domain
newtype T_Types  = T_Types (Bool ->
                            ( PP_Docs))
data Inh_Types  = Inh_Types {nested_Inh_Types :: !(Bool)}
data Syn_Types  = Syn_Types {pps_Syn_Types :: !(PP_Docs)}
wrap_Types :: T_Types  ->
              Inh_Types  ->
              Syn_Types 
wrap_Types !(T_Types sem ) !(Inh_Types _lhsInested )  =
    (let ( !_lhsOpps) = sem _lhsInested 
     in  (Syn_Types _lhsOpps ))
sem_Types_Cons :: T_Type  ->
                  T_Types  ->
                  T_Types 
sem_Types_Cons !(T_Type hd_ ) !(T_Types tl_ )  =
    (T_Types (\ (!_lhsInested) ->
                  (case (({-# LINE 53 "PrintCode.ag" #-}
                          _lhsInested
                          {-# LINE 4096 "PrintCode.hs" #-}
                          )) of
                   { !_tlOnested ->
                   (case (({-# LINE 51 "PrintCode.ag" #-}
                           _lhsInested
                           {-# LINE 4101 "PrintCode.hs" #-}
                           )) of
                    { !_hdOnested ->
                    (case (tl_ _tlOnested ) of
                     { ( !_tlIpps) ->
                         (case (hd_ _hdOnested ) of
                          { ( !_hdIpp,!_hdIprec) ->
                              (case (({-# LINE 76 "PrintCode.ag" #-}
                                      _hdIpp : _tlIpps
                                      {-# LINE 4110 "PrintCode.hs" #-}
                                      )) of
                               { !_lhsOpps ->
                               ( _lhsOpps) }) }) }) }) })) )
sem_Types_Nil :: T_Types 
sem_Types_Nil  =
    (T_Types (\ (!_lhsInested) ->
                  (case (({-# LINE 77 "PrintCode.ag" #-}
                          []
                          {-# LINE 4119 "PrintCode.hs" #-}
                          )) of
                   { !_lhsOpps ->
                   ( _lhsOpps) })) )