intero 0.0.0 → 0.1.0
raw patch · 3 files changed
+2/−6 lines, 3 files
Files
- intero.cabal +1/−1
- src/GhciMonad.hs +0/−1
- src/InteractiveUI.hs +1/−4
intero.cabal view
@@ -1,7 +1,7 @@ name: intero version:- 0.0.0+ 0.1.0 synopsis: Complete interactive development program for Haskell license:
src/GhciMonad.hs view
@@ -126,7 +126,6 @@ | ShowType -- show the type of expressions | RevertCAFs -- revert CAFs after every evaluation | Multiline -- use multiline commands- | CollectInfo -- collect and cache information about modules after load deriving Eq data BreakLocation
src/InteractiveUI.hs view
@@ -1411,9 +1411,8 @@ GHC.setTargets targets flag <- doLoad False LoadAllTargets- doCollectInfo <- lift (isOptionSet CollectInfo) case flag of- Succeeded | doCollectInfo -> do+ Succeeded -> do loaded <- getModuleGraph >>= filterM GHC.isLoaded . map GHC.ms_mod_name v <- lift (fmap mod_infos getGHCiState) !newInfos <- collectInfo v loaded@@ -2431,7 +2430,6 @@ strToGHCiOpt "s" = Just ShowTiming strToGHCiOpt "t" = Just ShowType strToGHCiOpt "r" = Just RevertCAFs-strToGHCiOpt "c" = Just CollectInfo strToGHCiOpt _ = Nothing optToStr :: GHCiOption -> String@@ -2439,7 +2437,6 @@ optToStr ShowTiming = "s" optToStr ShowType = "t" optToStr RevertCAFs = "r"-optToStr CollectInfo = "c" -- ---------------------------------------------------------------------------