14 Nov
2009
14 Nov
'09
5:58 p.m.
The attached patch shall help accepting an instance declaration like
import qualified Custom
instance Custom.Class T where methodA = ... methodB = ...
by translating it to
instance Custom.Class T where Custom.methodA = ... Custom.methodB = ...
I don't know, whether this also works if you do
import qualified Custom hiding (methodA, methodB, )
John recently sent two patches to jhc@haskell.org, that are not present in the darcs repository. Do they need some confirmation? They work for me, as far as I can judge.