- 26 May, 2007 2 commits
-
-
Isaac Dupree authored
-
Isaac Dupree authored
I decided against adding parseSignedInteger since octal and hex literals often have junk between the '-' and the digits, but, compare to Util.readRational which does handle signed numbers. Also since Integers - mathematically and in Haskell - can be negative, normally.
-
- 29 May, 2007 2 commits
-
-
Ian Lynagh authored
It doesn't work yet, but I'm pretty sure that's because the bindist is broken rather than the installer is broken.
-
Simon Marlow authored
-
- 26 May, 2007 1 commit
-
-
Isaac Dupree authored
-
- 25 May, 2007 4 commits
-
-
Michael D. Adams authored
-
Simon Marlow authored
-
Simon Marlow authored
-
Simon Marlow authored
-
- 24 May, 2007 2 commits
-
-
Ian Lynagh authored
-
Simon Marlow authored
Not done by default yet, but useful when hacking on libraries.
-
- 23 May, 2007 1 commit
-
-
Ian Lynagh authored
-
- 19 May, 2007 4 commits
-
-
Ian Lynagh authored
-
Ian Lynagh authored
-
Ian Lynagh authored
-
Ian Lynagh authored
-
- 18 May, 2007 2 commits
-
-
Ian Lynagh authored
-
Ian Lynagh authored
-
- 24 May, 2007 1 commit
-
-
mnislaih authored
-
- 23 May, 2007 4 commits
-
-
simonpj@microsoft.com authored
Roman produced programs involving associated types that did not optimise well. His programs were something like this: data family T a data instance T Int = MkT Bool Char bar :: T Int -> Int bar t = t `seq` loop 0 where loop = ... You'd think that the `seq` should unbox 't' outside the loop, since a (T Int) is just a MkT pair. The most robust way to make this happen is for the simplifier to understand a bit about type-family instances. See Note [Improving seq] in Simplify.lhs. We use FamInstEnv.topNormaliseType to do the interesting work. To make this happen I did a bit of refactoring to the simplifier monad. I'd previously done a very similar transformation in LiberateCase, but it was happening too late. So this patch takes it out of LiberateCase as well as adding it to Simplify.
-
simonpj@microsoft.com authored
Consder Trac #1265, which does this in GHCi: Prelude> let doit = fail "Code not written yet" :: ExpQ Prelude> $(doit) Even though 'doit' is defined "in the same module", it's OK to use it in a splice because it'll have been fully compiled to bytecode. (Contrast the situation if these two lines appeared in a single, compiled module.) Hence we want to bind 'doit' at TH's "imported level" (TcRnTypes.impLevel). This used to happen because GHCi-bound Ids were in the *global* type env (and hence at "imported level"). But since SimonM moved GHCi-bound ids to the *local* type env (for good reasons) the above program has been rejected. This patch makes it work again.
-
simonpj@microsoft.com authored
-
simonpj@microsoft.com authored
-
- 21 May, 2007 1 commit
-
-
simonpj@microsoft.com authored
-
- 11 May, 2007 1 commit
-
-
TomSchrijvers authored
-
- 14 May, 2007 1 commit
-
-
simonpj@microsoft.com authored
-
- 23 May, 2007 1 commit
-
-
mnislaih authored
-
- 11 May, 2007 1 commit
-
-
rl@cse.unsw.edu.au authored
-
- 10 May, 2007 1 commit
-
-
rl@cse.unsw.edu.au authored
-
- 22 May, 2007 1 commit
-
-
chak@cse.unsw.edu.au. authored
-
- 21 May, 2007 4 commits
-
-
Michael D. Adams authored
-
Simon Marlow authored
-
Simon Marlow authored
-
Simon Marlow authored
-
- 20 May, 2007 1 commit
-
-
mnislaih authored
-
- 21 May, 2007 1 commit
-
-
Simon Marlow authored
-
- 20 May, 2007 4 commits
-
-
Ian Lynagh authored
-
mnislaih authored
-
mnislaih authored
-
mnislaih authored
-