*** empty log message ***
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / Block.java
index ce9fd59..145fb87 100644 (file)
@@ -27,6 +27,11 @@ public class Block extends Statement {
     return statements == null;
   }
 
+  /**
+   * Return the block as String.
+    * @param tab how many tabs
+   * @return the string representation of the block
+   */
   public String toString(int tab) {
     final String s = AstNode.tabString(tab);
     final StringBuffer buff = new StringBuffer(s);
@@ -34,6 +39,7 @@ public class Block extends Statement {
     if (this.statements == null) {
       for (int i = 0; i < statements.length; i++) {
           buff.append(statements[i].toString(tab+1)).append(";\n");//$NON-NLS-1$
+          buff.append(statements[i].getClass().getName()).append(";\n");//$NON-NLS-1$
       }
     }
     buff.append("}\n"); //$NON-NLS-1$