packages feed

modulespection 0.1.0.4 → 0.1.0.5

raw patch · 2 files changed

+2/−4 lines, 2 files

Files

modulespection.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                modulespection-version:             0.1.0.4+version:             0.1.0.5 synopsis:            Template Haskell for introspecting a module's declarations description:   Collect all of the declarations in a module using Template Haskell (via the GHC API). @@ -53,8 +53,6 @@  > concatMapM (deriveJSON defaultOptions) =<< moduleDeclarations "Data.Monoid"  .  Which will build instances for all the types in "Data.Monoid".- - * 1.0.4 Parses LANGUAGE pragmas and does CPP preprocessing  license:             BSD3 license-file:        LICENSE
src/Language/Haskell/TH/Module/Magic.hs view
@@ -120,7 +120,7 @@                liftIO $ checkProcessArgsResult newestDFlags unhandled_flags                parseFile newestDFlags cppFilePath          else -            parseFile dflags filePath+            parseFile newDFlags filePath  -- | Turn ErrorMessages into a String errString :: Show a => Bag a -> String