breakpoint

Any known issues with breakpoints in embedded Python debugging using winpdb?

I’m trying to use winpdb to debug a python scripts embedded in my own C++ application. I can connect and view the callstack, globals, etc. initially but I’m having problems getting breakpoints to halt execution. When my breakpoint is hit the status bar in winpdb briefly switches to ‘WAITING AT BREAKPOINT’ then immediately switches back ...

MonoTouch Debugging not working correctly.

I was working on a different portion of my app and finally got back to working on a TableView that I had "finished" before. When you click on a Row in the TableView it should load a new View. I was pretty sure this was working, however now when I click on a Row, the app just freezes with the Row highlighted. I have waited 10 minutes o...

Extendscript Toolkit not stopping at breakpoints, why?

I am scripting Illustrator CS5 with the Extendscript Toolkit. I set several breakpoints in my code, they show up as red dots next to the line number. But when I run the script, it executes all the way to the end without stopping and the breakpoint dots turn dark. What am I missing here? Thanks! ...

What's the best way to set an Eclipse breakpoint on a EasyMock expect call?

I have code like ClockService mockClockService = createMock( ClockService.class ); Long timeFirstNodeCreated = new Date().getTime(); expect( mockClockService.getNow() ).andReturn( timeFirstNodeCreated ) ; Long timeFirstNodeDeleted = new Date().getTime(); expect( mockClockService.getNow() ).andReturn( timeFirstNodeDeleted ) ; ...