1) Moved net.sourceforge.phpeclipse.ui\src\net\sourceforge\phpdt back to net.sourcefo...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / Block.java
index df31b10..477ee09 100644 (file)
@@ -17,13 +17,11 @@ import net.sourceforge.phpdt.internal.compiler.flow.FlowInfo;
 import net.sourceforge.phpdt.internal.compiler.lookup.BlockScope;
 
 public class Block extends Statement {
-
-       public Statement[] statements;
+       public Statement[] statements;         // The array of statements found with this block
 
        public int explicitDeclarations;
 
-       // the number of explicit declaration , used to create scope
-       public BlockScope scope;
+       public BlockScope scope;               // The number of explicit declaration , used to create scope
 
        public static final Block None = new Block(0);