780c84131aaec2dcc893140c8393070d1744ea48
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / EmptyStatement.java
1 package net.sourceforge.phpdt.internal.compiler.ast;
2
3 /**
4  * An empty statement.
5  * @author Matthieu Casanova
6  */
7 public class EmptyStatement extends Statement {
8
9   public EmptyStatement(int sourceStart, int sourceEnd) {
10     super(sourceStart, sourceEnd);
11   }
12
13   public String toString(int tab) {
14     return tabString(tab) + ";"; //$NON-NLS-1$
15   }
16 }