Some bugfix
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / ArgumentDeclaration.java
index cffc971..b6c6a7c 100644 (file)
@@ -11,19 +11,32 @@ public class ArgumentDeclaration extends VariableDeclaration {
 
   /**
    * Create an argument.
-   * @param initialization the initialization
    * @param name the name
+   * @param reference the variable is a reference ?
+   * @param initialization the initialization
    * @param sourceStart the start point
    */
   public ArgumentDeclaration(char[] name,
+                             boolean reference,
                              Expression initialization,
-                             int sourceStart,
-                             boolean reference) {
+                             int sourceStart) {
     super(name, initialization, sourceStart);
     this.reference = reference;
   }
 
   /**
+   * Create an argument.
+   * @param name the name
+   * @param reference the variable is a reference ?
+   * @param sourceStart the start point
+   */
+  public ArgumentDeclaration(char[] name,
+                             boolean reference,
+                             int sourceStart) {
+    super(name, sourceStart);
+    this.reference = reference;
+  }
+  /**
    * Return the expression as String.
    * @return the expression
    */