1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Updates to the ExpressionService

This commit is contained in:
Marc Khouzam 2007-10-01 13:42:00 +00:00
parent e4e9401c92
commit 167b797c27

View file

@ -87,4 +87,13 @@ public interface IStack extends IDMService {
* Retrieves variables local to the stack frame.
*/
void getLocals(IDMContext<?> frameCtx, DataRequestMonitor<IVariableDMContext[]> rm);
/**
* Retrieves the stack depth of the specified stack frame.
*/
void getStackDepth(DataRequestMonitor<Integer> rm);
void getStackDepth(int maxDepth, DataRequestMonitor<Integer> rm);
}