mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 06:32:10 +02:00
Copyright
This commit is contained in:
parent
9cf3fc83e9
commit
fd4b56fff1
3 changed files with 16 additions and 5 deletions
|
@ -1,3 +1,8 @@
|
|||
/*
|
||||
* (c) Copyright QNX Software Systems Ltd. 2002.
|
||||
* All Rights Reserved.
|
||||
*
|
||||
*/
|
||||
package org.eclipse.cdt.debug.mi.core.cdi;
|
||||
|
||||
import org.eclipse.cdt.debug.core.cdi.CDIException;
|
||||
|
@ -88,6 +93,6 @@ public class SuspendedEvent implements ICDISuspendedEvent {
|
|||
} catch (CDIException e) {
|
||||
}
|
||||
|
||||
return null;
|
||||
return target;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
/*
|
||||
* (c) Copyright QNX Software Systems Ltd. 2002.
|
||||
* All Rights Reserved.
|
||||
*
|
||||
*/
|
||||
package org.eclipse.cdt.debug.mi.core.cdi;
|
||||
|
||||
import org.eclipse.cdt.debug.core.cdi.CDIException;
|
||||
|
@ -41,8 +46,6 @@ public class Value extends CObject implements ICDIValue {
|
|||
*/
|
||||
public String getValueString() throws CDIException {
|
||||
String result = "";
|
||||
StackFrame stack = variable.getStackFrame();
|
||||
stack.getCThread().setCurrentStackFrame(stack);
|
||||
MISession mi = getCTarget().getCSession().getMISession();
|
||||
CommandFactory factory = mi.getCommandFactory();
|
||||
MIVarEvaluateExpression var =
|
||||
|
@ -64,8 +67,6 @@ public class Value extends CObject implements ICDIValue {
|
|||
* @see org.eclipse.cdt.debug.core.cdi.model.ICDIValue#getVariables()
|
||||
*/
|
||||
public ICDIVariable[] getVariables() throws CDIException {
|
||||
StackFrame stack = variable.getStackFrame();
|
||||
stack.getCThread().setCurrentStackFrame(stack);
|
||||
Variable[] variables = null;
|
||||
MISession mi = getCTarget().getCSession().getMISession();
|
||||
CommandFactory factory = mi.getCommandFactory();
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
/*
|
||||
* (c) Copyright QNX Software Systems Ltd. 2002.
|
||||
* All Rights Reserved.
|
||||
*
|
||||
*/
|
||||
package org.eclipse.cdt.debug.mi.core.cdi;
|
||||
|
||||
import org.eclipse.cdt.debug.core.cdi.CDIException;
|
||||
|
|
Loading…
Add table
Reference in a new issue