Eliminated unused classes
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / FunctionCall.java
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/FunctionCall.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/FunctionCall.java
deleted file mode 100644 (file)
index 4e127ca..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-package net.sourceforge.phpdt.internal.compiler.ast;
-
-/**
- * @author Matthieu Casanova
- */
-public class FunctionCall extends AbstractSuffixExpression {
-
-  public Expression prefix;
-  public Expression[] args;
-
-  public FunctionCall(Expression prefix,
-                      Expression[] args,
-                      int sourceEnd) {
-    super(prefix.sourceStart, sourceEnd);
-    this.prefix = prefix;
-    this.args = args;
-  }
-
-  /**
-   * Return the expression as String.
-   * @return the expression
-   */
-  public String toStringExpression() {
-    final StringBuffer buff = new StringBuffer(prefix.toStringExpression());
-    buff.append('(');
-    for (int i = 0; i < args.length; i++) {
-      Expression arg = args[i];
-      if (i != 0) {
-        buff.append(',');
-      }
-      buff.append(arg.toStringExpression());
-    }
-    buff.append(')');
-    return buff.toString();
-  }
-}