Re: Line numbers vs Compiled Code in stack traces

1999-04-19 Thread Pavel Tolkachev
Michael Nielsen wrote: > > dan wrote: > > > > Try running with the "-nojit" option. Turning off the JIT allows the exception > > stack trace to display line numbers. > > Where, I tried java -nojit in 1.2, but it complains that no such option. > > mvh > mike. > The following options

Re: Line numbers vs Compiled Code in stack traces

1999-04-19 Thread Michael Nielsen
dan wrote: > > Try running with the "-nojit" option. Turning off the JIT allows the exception > stack trace to display line numbers. Where, I tried java -nojit in 1.2, but it complains that no such option. mvh mike. -- #include ---

Re: Line numbers vs Compiled Code in stack traces

1999-04-19 Thread Michael Sinz
On Mon, 19 Apr 1999 12:23:44 -0700, Jason Proctor wrote: >Hi everyone, > >I've noticed that exception stack traces sometimes print helpful line >numbers and sometimes print "Compiled Code" instead of line numbers. The >latter is quite annoying when tracking down bugs and I was wondering what >det

Re: Line numbers vs Compiled Code in stack traces

1999-04-19 Thread Brad Giaccio
On Mon, Apr 19, 1999 at 12:23:44PM -0700, Jason Proctor wrote: > Hi everyone, > > I've noticed that exception stack traces sometimes print helpful line > numbers and sometimes print "Compiled Code" instead of line numbers. The > latter is quite annoying when tracking down bugs and I was wondering

Re: Line numbers vs Compiled Code in stack traces

1999-04-19 Thread Troy Wu
The VM Spec says that the LineNumberAttribute can be ignored; any such information that the VM provides is a function (IMHO) of the completeness of the debugging implementation in the VM. Not sure that answers your question --troy On Mon, 19 Apr 1999, Jason Proctor wrote: Hi eve

Line numbers vs Compiled Code in stack traces

1999-04-19 Thread Jason Proctor
Hi everyone, I've noticed that exception stack traces sometimes print helpful line numbers and sometimes print "Compiled Code" instead of line numbers. The latter is quite annoying when tracking down bugs and I was wondering what determines whether line numbers are included or not. It seems to be

Re: Line numbers vs Compiled Code in stack traces

1999-04-19 Thread dan
Try running with the "-nojit" option. Turning off the JIT allows the exception stack trace to display line numbers. Jason Proctor wrote: > Hi everyone, > > I've noticed that exception stack traces sometimes print helpful line > numbers and sometimes print "Compiled Code" instead of line numbers