Re: how can I get a listing of everything that's done in a program

2009-10-22 Thread Peter Hercek
Simon Marlow wrote: On 20/10/2009 14:54, Ralph Crawford wrote: So far so good. This is what I want to see - a listing like this for every (interpreted of course) line of haskell code that runs, all the way to the end. Since this is a very large program, at this point I started pasting this to

Re: how can I get a listing of everything that's done in a program

2009-10-22 Thread Jose Iborra
On 22/10/2009, at 12:52, Peter Hercek wrote: As for getting a list of the evaluation steps, we don't have anything that does exactly what you want at the moment, but it probably wouldn't be hard to implement on top of the existing debugging functionality. If you want to execute one

Re: how can I get a listing of everything that's done in a program

2009-10-21 Thread Simon Marlow
On 20/10/2009 14:54, Ralph Crawford wrote: Hi. I'm working with GHC 6.10.4 on Solaris. I'm new at Haskell and have inherited a rather large and complex program to maintain and modify. I'd like to get a listing of everything - every single step - that's done in a run of the program. Something

how can I get a listing of everything that's done in a program

2009-10-20 Thread Ralph Crawford
Hi. I'm working with GHC 6.10.4 on Solaris. I'm new at Haskell and have inherited a rather large and complex program to maintain and modify. I'd like to get a listing of everything - every single step - that's done in a run of the program. Something similar to the output of the :step command,