Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 365541 | Differences between
and this patch

Collapse All | Expand All

(-)a/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/MIExpressions.java (-1 / +1 lines)
Lines 485-491 Link Here
485
485
486
        @Override
486
        @Override
487
        public String toString() {
487
        public String toString() {
488
            return String.format( "%s[%d-%d]", baseToString(), Integer.valueOf( getIndex() ), Integer.valueOf( getIndex() + getLength() ) ); //$NON-NLS-1$
488
            return String.format( "%s.expr[%s][%d-%d]", baseToString(), getParentExpression(), getIndex(), getIndex() + getLength() - 1); //$NON-NLS-1$
489
        }
489
        }
490
490
491
        private static ExpressionInfo createExpressionInfo(ExpressionInfo parentInfo, int index, int length) {
491
        private static ExpressionInfo createExpressionInfo(ExpressionInfo parentInfo, int index, int length) {

Return to bug 365541