2013-05-17 01:00:01 +00:00
|
|
|
module Language.Haskell.GhcMod.Flag where
|
2012-01-23 04:18:40 +00:00
|
|
|
|
2013-05-17 01:00:01 +00:00
|
|
|
import qualified Language.Haskell.GhcMod.Gap as Gap
|
2014-05-11 22:40:00 +00:00
|
|
|
import Language.Haskell.GhcMod.Convert
|
2014-07-11 01:10:37 +00:00
|
|
|
import Language.Haskell.GhcMod.Monad
|
2012-01-23 04:18:40 +00:00
|
|
|
|
2013-05-20 05:28:56 +00:00
|
|
|
-- | Listing GHC flags. (e.g -fno-warn-orphans)
|
|
|
|
|
2014-07-12 09:16:16 +00:00
|
|
|
flags :: IOish m => GhcModT m String
|
2014-07-11 01:10:37 +00:00
|
|
|
flags = convert' [ "-f" ++ prefix ++ option
|
|
|
|
| option <- Gap.fOptions
|
|
|
|
, prefix <- ["","no-"]
|
|
|
|
]
|