Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Schorn2010-02-17 16:23:57 +0000
committerMarkus Schorn2010-02-17 16:23:57 +0000
commit1fc47b91e1471210836462a9c55328fa494c00b1 (patch)
tree489f37caa31ca12ceb085c6723c80a0f1e756496 /core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTInitializerExpression.java
parent608c4287b45a669ecc363e112c1deb651d936b66 (diff)
downloadorg.eclipse.cdt-1fc47b91e1471210836462a9c55328fa494c00b1.tar.gz
org.eclipse.cdt-1fc47b91e1471210836462a9c55328fa494c00b1.tar.xz
org.eclipse.cdt-1fc47b91e1471210836462a9c55328fa494c00b1.zip
Bug 302412: Syntax for c++0x initializer lists
Diffstat (limited to 'core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTInitializerExpression.java')
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTInitializerExpression.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTInitializerExpression.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTInitializerExpression.java
index 4d972dc1895..8e49f3a0071 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTInitializerExpression.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTInitializerExpression.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2004, 2009 IBM Corporation and others.
+ * Copyright (c) 2004, 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -15,15 +15,16 @@ package org.eclipse.cdt.core.dom.ast;
*
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
+ * @deprecated Replaced by {@link IASTEqualsInitializer}.
*/
-public interface IASTInitializerExpression extends IASTInitializer {
+@Deprecated
+public interface IASTInitializerExpression extends IASTEqualsInitializer {
/**
* <code>INITIALIZER_EXPRESSION</code> represents the relationship between
* an <code>IASTInitializerExpression</code>. and its <code></code>IASTExpression</code>.
*/
- public static final ASTNodeProperty INITIALIZER_EXPRESSION = new ASTNodeProperty(
- "IASTInitializerExpression.INITIALIZER_EXPRESSION - IASTExpression for IASTInitializerExpression"); //$NON-NLS-1$
+ public static final ASTNodeProperty INITIALIZER_EXPRESSION = INITIALIZER;
/**
* Get the expression for the initializer.

Back to the top