RE: comments on the GHC API

2005-03-23 Thread Simon Marlow
On 22 March 2005 17:49, Matthias Neubauer wrote: ... we also need the state after renaming, but we then have to stop, I suppose! Yes, the HaRE folks also want the renamed abstract syntax too. We haven't quite figured out how best to make it available: renaming is intertwined with typechecking

Re: comments on the GHC API

2005-03-22 Thread Matthias Neubauer
Simon Marlow [EMAIL PROTECTED] writes: I think most of what you're asking for is planned... Great to hear! [...] The 'load' function lets you load only up to a certain module, and the JustTypecheck mode stops before code generation and lets you inspect the typechecked code. Using this,

RE: comments on the GHC API

2005-03-18 Thread Simon Marlow
Hi Matthias, I think most of what you're asking for is planned... On 17 March 2005 16:59, Matthias Neubauer wrote: I just had a first look at the sketch for the planned GHC API (ghc/compiler/main/GHC.hs), since we are very keen on using it ... Our group would mostly like to make use of a

comments on the GHC API

2005-03-17 Thread Matthias Neubauer
Hi folks, I just had a first look at the sketch for the planned GHC API (ghc/compiler/main/GHC.hs), since we are very keen on using it ... Our group would mostly like to make use of a compilation manager/module system implementation for Haskell---so these are the parts I concentrated on for now.