package net.sourceforge.phpdt.internal.compiler.ast; import net.sourceforge.phpdt.internal.compiler.ast.declarations.VariableUsage; import java.util.List; import java.util.ArrayList; /** * An abstract variable declaration. * @author Matthieu Casanova */ public abstract class AbstractVariableDeclaration extends Expression { /** The name of the variable. */ public char[] name; /** * Create a node giving starting and ending offset * @param sourceStart starting offset * @param sourceEnd ending offset * @param name the name of the variable */ public AbstractVariableDeclaration(final char[] name, final int sourceStart, final int sourceEnd) { super(sourceStart, sourceEnd); this.name = name; } }