First try for AST structure. A lot of things to change
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / Statement.java
1 package net.sourceforge.phpdt.internal.compiler.ast;
2
3
4 /**
5  * A Statement.
6  * @author Matthieu Casanova
7  */
8 public abstract class Statement extends AstNode {
9
10   /**
11    * Create a node giving starting and ending offset
12    * @param sourceStart starting offset
13    * @param sourceEnd ending offset
14    */
15   public Statement(int sourceStart, int sourceEnd) {
16     super(sourceStart, sourceEnd);
17   }
18
19   public boolean isEmptyBlock() {
20     return false;
21   }
22 }