[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.tools.jdt] Debugging Framework issue with Stepping Over action not enabled

Hi,

Another issue in my adventure of writing a debugger in Eclipse. I am able to do stepping. When I click on my stack frame, I am able to have the JDT's stepping menu items highlighted and enabled correctly, that is, 'Run->StepOver', 'Run->StepInto', etc., are enabled for me to use.

The problem I have is: When I do a step over, I have to click again on the top stack frame to have 'Run->Step Over' menu item enabled to do the next step over. Why do I lose focus on the stack frame on successive 'Run->Step Over' or pressing F6? I have made sure that my IThread.canStepOver() actually returns true.

Notice that my IThread model does fire the resume event with detail code DebugEvent.STEP_OVER for each IStep.stepOver() call I invoke.

I am using Eclipse 3.2M5a build.

Greatly appreciate it for any tips or help from Eclipse's JDT team and/or Eclipse Debug Framework team!

I really need some pointers on this issue.