1
1
mirror of https://github.com/google/ormolu.git synced 2024-12-18 21:11:45 +03:00
ormolu/app/Main.hs

28 lines
719 B
Haskell
Raw Normal View History

2018-11-25 16:34:28 +03:00
module Main (main) where
import Control.Monad
import Ormolu.Parser
import System.Environment (getArgs)
import qualified Outputable as GHC
2018-11-25 16:34:28 +03:00
main :: IO ()
main = do
(path:_) <- getArgs
input <- readFile path
(ws, r) <- parseModule [] path input
unless (null ws) $
putStrLn "dynamic option warnings:"
-- TODO print ws
case r of
Left (srcSpan, err) -> do
putStrLn (showOutputable srcSpan)
putStrLn err
Right (anns, parsedModule) -> do
putStrLn "\nannotations:\n"
putStrLn (showOutputable anns)
putStrLn "\nparsed module:\n"
putStrLn (showOutputable parsedModule)
showOutputable :: GHC.Outputable o => o -> String
showOutputable = GHC.showSDocUnsafe . GHC.ppr