I was lazy and wrote a Haskell module (using the excellent EclipseFP IDE) without giving type signatures to my top-level functions.
EclipseFP uses HLint to automatically label every offending function, and I can fix each one with 4 mouse clicks. Effective, but tedious.
Is there a utility program that will scan a .hs file, and emit a modified version that adds type signatures to each top-level function?
Example:
./addTypeSignatures Foo.hs
would read a file Foo.hs
:
foo x = foo + a
and emit
foo :: Num a => a -> a
foo x = x + 1
Bonus points if the tool automatically edits Foo.hs
in place and saves a backup Foo.bak.hs
Here's a variation of the above script, that uses ":browse" instead of ":type", per ehird's comment.
One major problem with this solution is that ":browse" displays fully qualified type names, whereas ":type" uses the imported (abbreviated) type names. This, if your module uses unqualified imported types (a common case), the output of this script will fail compilation.
That shortoming is fixable (using some parsing of imports), but this rabbit hole is getting deep.