1 package net.sourceforge.phpdt.internal.compiler.ast;
3 import net.sourceforge.phpdt.internal.compiler.ast.declarations.VariableUsage;
6 import java.util.ArrayList;
10 * An abstract variable declaration.
11 * @author Matthieu Casanova
13 public abstract class AbstractVariableDeclaration extends Expression {
14 /** The name of the variable. */
18 * Create a node giving starting and ending offset
19 * @param sourceStart starting offset
20 * @param sourceEnd ending offset
21 * @param name the name of the variable
23 public AbstractVariableDeclaration(final char[] name, final int sourceStart, final int sourceEnd) {
24 super(sourceStart, sourceEnd);