mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 06:02:11 +02:00
Added the 'stepReturn' method.
This commit is contained in:
parent
61b492d5c7
commit
ce4762cf93
2 changed files with 16 additions and 0 deletions
|
@ -167,6 +167,14 @@ public interface ICDITarget extends ICDIObject {
|
||||||
*/
|
*/
|
||||||
void suspend() throws CDIException;
|
void suspend() throws CDIException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Steps to the next return statement in the current scope. Can
|
||||||
|
* only be called when the associated thread is suspended.
|
||||||
|
*
|
||||||
|
* @throws CDIException if this method fails. Reasons include:
|
||||||
|
*/
|
||||||
|
void stepReturn() throws CDIException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Steps over the current source line. Can only be called
|
* Steps over the current source line. Can only be called
|
||||||
* when the associated target is suspended.
|
* when the associated target is suspended.
|
||||||
|
|
|
@ -51,6 +51,14 @@ public interface ICDIThread extends ICDIObject {
|
||||||
*/
|
*/
|
||||||
void suspend() throws CDIException;
|
void suspend() throws CDIException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Steps to the next return statement in the current scope. Can
|
||||||
|
* only be called when the associated thread is suspended.
|
||||||
|
*
|
||||||
|
* @throws CDIException if this method fails. Reasons include:
|
||||||
|
*/
|
||||||
|
void stepReturn() throws CDIException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Steps over the current source line. Can only be called
|
* Steps over the current source line. Can only be called
|
||||||
* when the associated thread is suspended.
|
* when the associated thread is suspended.
|
||||||
|
|
Loading…
Add table
Reference in a new issue