ghc-imported-from
ghc-imported-from copied to clipboard
For a given Haskell source file, determine where a symbol is imported from
For example "can look up when"; see https://github.com/fpco/stackage/pull/1315#issuecomment-205094702
Instead of ``` test/ImportedFromSpec.hs:45: 1) ImportedFrom.checkImportedFrom can look up Maybe uncaught exception: IOException of type NoSuchThing (/home/petersen/.stack/snapshots/x86_64-linux/nightly-2016-01-24/7.10.3/doc/safe-0.3.9/safe.haddock: openBinaryFile: does not exist (No such file or directory)) ``` tell the user...
Check that the URLs resolved to `hackage.org` are correct - have seen some odd things with a module name appearing where the package name should be.
Extend the `HaskellModule` type to handle qualified imports without an `as` keyword, e.g. ``` import Foo import qualified Foo.Bar.Baz ... f = Foo.Bar.Baz.someFn 42 ``` Looking up `someFn` should go...
Using ghc-7.10.3 on nixos, I get the following error: ``` Language/Haskell/GhcImportedFrom.hs:797:54: No instance for (Language.Haskell.GhcMod.Monad.Log.GmLog IO) arising from a use of ‘findCradle’ In the second argument of ‘($)’, namely ‘findCradle’...
It sometimes takes 2-3 seconds on my machine to find the Haddock page for a particular symbol. Is this normal? Perhaps some of the information that `cabal repl` provides to...
Hi, Cool program. Is there any chance that it could do more in terms of pulling out the docs for specific symbols? Say, I have in mind displaying the documentation...