Eliminated unused classes
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / ArrayVariableDeclaration.java
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/ArrayVariableDeclaration.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/ArrayVariableDeclaration.java
deleted file mode 100644 (file)
index 14413e5..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-package net.sourceforge.phpdt.internal.compiler.ast;
-
-/**
- * This variable declaration do not extend AbstractVariableDeclaration because
- * it could take Expression as key
- * @author Matthieu Casanova
- */
-public class ArrayVariableDeclaration extends Expression {
-
-  public Expression key,value;
-
-  public ArrayVariableDeclaration(Expression key,Expression value) {
-    super(key.sourceStart, value.sourceEnd);
-    this.key = key;
-    this.value = value;
-  }
-
-  public ArrayVariableDeclaration(Expression key,int sourceEnd) {
-    super(key.sourceStart, sourceEnd);
-    this.key = key;
-  }
-  /**
-   * Return the expression as String.
-   * @return the expression
-   */
-  public String toStringExpression() {
-    final StringBuffer buff = new StringBuffer();
-    buff.append(key.toStringExpression());
-    if (value != null) {
-      buff.append(" => ");
-      buff.append(value.toStringExpression());
-    }
-    return buff.toString();
-  }
-}