[Haskell-cafe] ANN: fix-imports-0.1.2

Evan Laforge qdunkan at gmail.com
Tue Jul 12 09:59:10 CEST 2011


> I meant more in the "Before: ... After: ..." sense ;-) (i.e. visually
> being able to tell what your program does, rather than just a
> description).

Oh, ok, I guess I can do that too:

Before:

module M where
import ZZ.Out.Of.Order
import qualified No.Longer.Needed as Needed

-- x = Needed.y -- just removed this
y = New.something -- just added this

After:

module M where
import qualified Heavily.Nested.New as New
import ZZ.Out.Of.Order

-- x = Needed.y -- just removed this
y = New.something -- just added this



More information about the Haskell-Cafe mailing list