Closed GoogleCodeExporter closed 9 years ago
[deleted comment]
I am either unable to reproduce this, or the documentation is misleading you.
When you say to set a breakpoint at doStuff(), do you mean line 2:
private static int doStuff(int input) {
or line 11:
System.out.println("Result: " + doStuff(42));
If I set a breakpoint at line 11, the program stops when it reaches that line.
If I set a breakpoint at line 2, it does not stop. However, the program does
not support setting a breakpoint at a method declaration. It only supports
setting breakpoints at source lines (e.g., line 3, int a = input + 1) or at
class declarations. (e.g., line 1). (I have not used the class version, so I
am only assuming that the previous owner implemented it correctly.)
Can you clarify at which line you are setting the breakpoint? If it works for
you as described above, I will update the documentation to be clearer that you
cannot set a breakpoint at a method declaration.
Original comment by udalrich.schermer
on 9 Jan 2011 at 2:21
Ah, I was attempting to set a breakpoint at line 2. Thanks.
Original comment by jason.t...@gmail.com
on 9 Jan 2011 at 2:48
Need to update docs to be clear that setting a breakpoint on a method
declaration does not work.
Original comment by udalrich.schermer
on 9 Jan 2011 at 4:17
Resolved in revision 474 in 0.5 branch.
Original comment by udalrich.schermer
on 12 Apr 2011 at 3:10
Original comment by udalrich.schermer
on 12 Apr 2011 at 3:29
Original issue reported on code.google.com by
jason.t...@gmail.com
on 6 Jan 2011 at 8:10