improved PHP parser
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / internal / compiler / ast / Statement.java
index 1559614..bcd71cb 100644 (file)
@@ -49,7 +49,11 @@ public abstract class Statement extends ASTNode {
 
                return true;
        }
-       
+       public StringBuffer print(int indent, StringBuffer output) {
+               return printStatement(indent, output);
+       }
+       public abstract StringBuffer printStatement(int indent, StringBuffer output);
+
        public abstract void resolve(BlockScope scope);
        
        public Constant resolveCase(BlockScope scope, TypeBinding testType, SwitchStatement switchStatement) {