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);