Eliminated unused classes
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / ArrayInitializer.java
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/ArrayInitializer.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/ArrayInitializer.java
deleted file mode 100644 (file)
index 8dca5e1..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-package net.sourceforge.phpdt.internal.compiler.ast;
-
-import java.util.List;
-
-/**
- * an array initializer.
- * array('a','b','c') or array('a' => 2,'b' = '3');
- * @author Matthieu Casanova
- */
-public final class ArrayInitializer extends Expression {
-
-  /** the key and values. */
-  private final ArrayVariableDeclaration[] vars;
-
-  /**
-   * Create a new array initializer.
-   * @param vars the keys and values of the array
-   * @param sourceStart the starting offset
-   * @param sourceEnd the ending offset
-   */
-  public ArrayInitializer(final ArrayVariableDeclaration[] vars,
-                          final int sourceStart,
-                          final int sourceEnd) {
-    super(sourceStart, sourceEnd);
-    this.vars = vars;
-  }
-
-  /**
-   * Return the expression as String.
-   * @return the expression
-   */
-  public String toStringExpression() {
-    final StringBuffer buff = new StringBuffer("array(");
-    for (int i = 0; i < vars.length; i++) {
-      if (i != 0) {
-        buff.append(",");
-      }
-      if (vars[i] != null) {
-        buff.append(vars[i].toStringExpression());
-      }
-    }
-    buff.append(")");
-    return buff.toString();
-  }
-
-  /**
-   * Get the variables from outside (parameters, globals ...)
-   * @param list the list where we will put variables
-   */
-  public void getOutsideVariable(final List list) {}
-
-  /**
-   * get the modified variables.
-   * @param list the list where we will put variables
-   */
-  public void getModifiedVariable(final List list) {
-    for (int i = 0; i < vars.length; i++) {
-      if (vars[i] != null) {
-        vars[i].getModifiedVariable(list);
-      }
-    }
-  }
-
-  /**
-   * Get the variables used.
-   * @param list the list where we will put variables
-   */
-  public void getUsedVariable(final List list) {
-    for (int i = 0; i < vars.length; i++) {
-      if (vars[i] != null) {
-        vars[i].getUsedVariable(list);
-      }
-    }
-  }
-}