mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
[205142] Changed IStack.getArguments() and IStack.getVariables() to accept strong-typed IFrameDMContext.
This commit is contained in:
parent
d9ee930837
commit
976a665a68
1 changed files with 2 additions and 2 deletions
|
@ -96,12 +96,12 @@ public interface IStack extends IDMService {
|
|||
/**
|
||||
* Retrieves variables which were arguments to the stack frame's function.
|
||||
*/
|
||||
void getArguments(IDMContext frameCtx, DataRequestMonitor<IVariableDMContext[]> rm);
|
||||
void getArguments(IFrameDMContext frameCtx, DataRequestMonitor<IVariableDMContext[]> rm);
|
||||
|
||||
/**
|
||||
* Retrieves variables local to the stack frame.
|
||||
*/
|
||||
void getLocals(IDMContext frameCtx, DataRequestMonitor<IVariableDMContext[]> rm);
|
||||
void getLocals(IFrameDMContext frameCtx, DataRequestMonitor<IVariableDMContext[]> rm);
|
||||
|
||||
/**
|
||||
* Retrieves the number of stack frames available for the given context..
|
||||
|
|
Loading…
Add table
Reference in a new issue