ghc-mod/Check.hs

29 lines
749 B
Haskell
Raw Normal View History

2010-03-11 10:03:17 +00:00
module Check (checkSyntax) where
2011-05-24 07:00:47 +00:00
import Cabal
2010-03-11 10:03:17 +00:00
import Control.Applicative
2011-08-24 06:58:12 +00:00
import CoreMonad
2011-08-24 07:50:26 +00:00
import ErrMsg
import Exception
2010-04-28 12:43:32 +00:00
import GHC
2011-05-24 07:00:47 +00:00
import Prelude hiding (catch)
2010-04-30 09:36:31 +00:00
import Types
2010-03-11 10:03:17 +00:00
----------------------------------------------------------------
2010-03-11 13:39:07 +00:00
checkSyntax :: Options -> String -> IO String
checkSyntax opt file = do
unlines <$> check opt file
2010-04-28 12:43:32 +00:00
----------------------------------------------------------------
check :: Options -> String -> IO [String]
2011-08-24 07:50:26 +00:00
check opt fileName = withGHC $ checkIt `gcatch` handleErrMsg
2010-03-11 10:03:17 +00:00
where
2011-08-24 07:50:26 +00:00
checkIt = do
(file,readLog) <- initializeGHC opt fileName options True
setTargetFile file
load LoadAllTargets
liftIO readLog
options = ["-Wall","-fno-warn-unused-do-bind"] ++ ghcOpts opt