A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / EmptyStatement.java
index 1fb6260..e498674 100644 (file)
@@ -22,26 +22,28 @@ public class EmptyStatement extends Statement {
                this.sourceEnd = endPosition;
        }
 
-       public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) {
+       public FlowInfo analyseCode(BlockScope currentScope,
+                       FlowContext flowContext, FlowInfo flowInfo) {
                return flowInfo;
        }
 
-//     public void generateCode(BlockScope currentScope, CodeStream codeStream){
-//             // no bytecode, no need to check for reachability or recording source positions
-//     }
+       // public void generateCode(BlockScope currentScope, CodeStream codeStream){
+       // // no bytecode, no need to check for reachability or recording source
+       // positions
+       // }
        public StringBuffer printStatement(int tab, StringBuffer output) {
                return printIndent(tab, output).append(';');
        }
+
        public void resolve(BlockScope scope) {
        }
-       
+
        public void traverse(IAbstractSyntaxTreeVisitor visitor, BlockScope scope) {
                visitor.visit(this, scope);
                visitor.endVisit(this, scope);
        }
-       
+
        public String toString(int tab) {
                return tabString(tab) + ";"; //$NON-NLS-1$ 
        }
 }
-