1 package net.sourceforge.phpdt.internal.compiler.ast;
7 * @author Matthieu Casanova
9 public final class EmptyStatement extends Statement {
11 public EmptyStatement(final int sourceStart, final int sourceEnd) {
12 super(sourceStart, sourceEnd);
15 public String toString(final int tab) {
16 return tabString(tab) + ';'; //$NON-NLS-1$
20 * Get the variables from outside (parameters, globals ...)
22 * @param list the list where we will put variables
24 public void getOutsideVariable(final List list) {}
27 * get the modified variables.
29 * @param list the list where we will put variables
31 public void getModifiedVariable(final List list) {}
34 * Get the variables used.
36 * @param list the list where we will put variables
38 public void getUsedVariable(final List list) {}