X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=Translator.hs;h=396dfbc40e8e03769fea16d673281a0baeb01865;hb=19150b91c6ef62bd9d1da7b615b7364532d902d5;hp=92251eede3caf0dde2915ae9cf006f9078ce638f;hpb=2fc713015ccdabfb4f979546c3ecd0dd40329bb8;p=matthijs%2Fmaster-project%2Fc%CE%BBash.git diff --git a/Translator.hs b/Translator.hs index 92251ee..396dfbc 100644 --- a/Translator.hs +++ b/Translator.hs @@ -8,6 +8,9 @@ import qualified Var import qualified Type import qualified TyCon import qualified DataCon +import qualified HscMain +import qualified SrcLoc +import qualified FastString import qualified Maybe import qualified Module import qualified Data.Foldable as Foldable @@ -63,12 +66,17 @@ makeVHDL filename name stateful = do listBind :: String -> String -> IO () listBind filename name = do core <- loadModule filename - let binds = findBinds core [name] + let [bind] = findBinds core [name] putStr "\n" - putStr $ prettyShow binds + putStr $ prettyShow bind putStr "\n\n" - putStr $ showSDoc $ ppr binds + putStr $ showSDoc $ ppr bind putStr "\n\n" + case bind of + NonRec b expr -> do + putStr $ showSDoc $ ppr $ CoreUtils.exprType expr + putStr "\n\n" + otherwise -> return () -- | Translate the binds with the given names from the given core module to -- VHDL. The Bool in the tuple makes the function stateful (True) or