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

Up cdt.dsf.gdb version to 4.2 and add missing @since tags.

Change-Id: I0dfe34ca6ca828618b00eed663d525f8f945d01b
This commit is contained in:
Marc Khouzam 2012-06-28 16:21:46 -04:00
parent cda8795284
commit 1e6319db0c
2 changed files with 5 additions and 1 deletions

View file

@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
Bundle-Name: %pluginName Bundle-Name: %pluginName
Bundle-Vendor: %providerName Bundle-Vendor: %providerName
Bundle-SymbolicName: org.eclipse.cdt.dsf.gdb;singleton:=true Bundle-SymbolicName: org.eclipse.cdt.dsf.gdb;singleton:=true
Bundle-Version: 4.1.0.qualifier Bundle-Version: 4.2.0.qualifier
Bundle-Activator: org.eclipse.cdt.dsf.gdb.internal.GdbPlugin Bundle-Activator: org.eclipse.cdt.dsf.gdb.internal.GdbPlugin
Bundle-Localization: plugin Bundle-Localization: plugin
Require-Bundle: org.eclipse.core.runtime, Require-Bundle: org.eclipse.core.runtime,

View file

@ -443,6 +443,9 @@ public class MIExpressions extends AbstractDsfService implements IMIExpressions,
this(new MIExpressionDMC(sessionId, parentInfo, frameCtx), frameCtx, index, length); this(new MIExpressionDMC(sessionId, parentInfo, frameCtx), frameCtx, index, length);
} }
/**
* @since 4.2
*/
public IndexedPartitionDMC( public IndexedPartitionDMC(
MIExpressionDMC parentExpr, MIExpressionDMC parentExpr,
int index, int index,
@ -508,6 +511,7 @@ public class MIExpressions extends AbstractDsfService implements IMIExpressions,
/** /**
* Get the context of the parent array. This can be used to know if the * Get the context of the parent array. This can be used to know if the
* parent array is a casted expression. * parent array is a casted expression.
* @since 4.2
*/ */
public MIExpressionDMC getParentExpressionContext() { public MIExpressionDMC getParentExpressionContext() {
return fParentExpression; return fParentExpression;