entlicher opened a new pull request #3236:
URL: https://github.com/apache/netbeans/pull/3236


   This is solving the use-case when the user performs a step over a code that 
contains a breakpoint.
   When the breakpoint is hit and the user does continue, the step is supposed 
to complete.
   
   However, when there is an invocation of a method performed at the 
breakpoint, the step is resubmitted at the breakpoint location. This results in 
an unexpected locat step from the breakpoint location and discarded original 
step. The resubmission was done to assure that the step is not completed inside 
of the method invocation.
   
   To solve this we compare the thread frame depth at the step creation point 
and method invocation point. When the step it up on the stack and it's not a 
step into, we do not disable it as the invocation can not go up the stack.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to