transformers package on JHC
For those people who want to use the 'transformers' package on JHC I have made a patch: http://code.haskell.org/~thielema/transformers-jhc.patch I hesitate to push this to the 'transformers' main branch, since it contains only several syntactic replacements like: do ~(a,b) <- act replaced by do ab <- act let (a,b) = ab How about replacing 'mtl' dependency by 'transformers' in JHC's code? This would free us from some functional dependencies and might bring us closer to a JHC compiled JHC.
On Sat, 14 Nov 2009, Henning Thielemann wrote:
For those people who want to use the 'transformers' package on JHC I have made a patch: http://code.haskell.org/~thielema/transformers-jhc.patch
now also as attachment for the record
I hesitate to push this to the 'transformers' main branch, since it contains only several syntactic replacements like:
do ~(a,b) <- act
replaced by
do ab <- act let (a,b) = ab
On Sat, Nov 14, 2009 at 07:44:10PM +0100, Henning Thielemann wrote:
I hesitate to push this to the 'transformers' main branch, since it contains only several syntactic replacements like:
do ~(a,b) <- act
replaced by
do ab <- act let (a,b) = ab
Hmmm... Is this a bug in jhc that it doesn't accept these patterns? John -- John Meacham - ⑆repetae.net⑆john⑈ - http://notanumber.net/
On Sat, 14 Nov 2009, John Meacham wrote:
On Sat, Nov 14, 2009 at 07:44:10PM +0100, Henning Thielemann wrote:
I hesitate to push this to the 'transformers' main branch, since it contains only several syntactic replacements like:
do ~(a,b) <- act
replaced by
do ab <- act let (a,b) = ab
Hmmm... Is this a bug in jhc that it doesn't accept these patterns?
It would say this is a bug.
participants (2)
-
Henning Thielemann -
John Meacham