name: error-analyze version: 0.0.1 cabal-version: >=1.12 build-type: Simple license: BSD3 license-file: LICENSE synopsis: Parse ghc and cabal error messages and give their causes for easier resolution description: Parse ghc and cabal error messages and give their causes for easier resolution. . Just pass the error message to 'errorCauses' and get a list of possible explanations/resolutions ('ErrorCause') . Check the test suite for examples. . This functionality was originally developed in Java as part of EclipseFP but was rewritten in Haskell in the hope it can be useful to other IDE tools or GHC library wrappers. maintainer: jp@moresmau.fr stability: beta category: GHC, Development bug-reports: https://github.com/JPMoresmau/error-analyze/issues library exposed-modules: Language.Haskell.ErrorAnalyze build-depends: base <5, text default-language: Haskell98 hs-source-dirs: src ghc-options: -ferror-spans -Wall test-suite test-error-analyze type: exitcode-stdio-1.0 main-is: Main.hs build-depends: base <5, error-analyze -any, tasty >0.10, tasty-hunit -any, HUnit -any, text default-language: Haskell98 hs-source-dirs: test ghc-options: -ferror-spans -Wall source-repository head type: git location: https://github.com/JPMoresmau/error-analyze