First try for AST structure. A lot of things to change
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / Literal.java
1 package net.sourceforge.phpdt.internal.compiler.ast;
2
3 /**
4  * Here is the Superclass of the Literal expressions.
5  * @author Matthieu Casanova
6  */
7 public abstract class Literal extends Expression {
8
9   /**
10    * Create a Literal.
11    * @param sourceStart starting offset
12    * @param sourceEnd ending offset
13    */
14   public Literal(int sourceStart, int sourceEnd) {
15     super(sourceStart, sourceEnd);
16   }
17
18   public abstract char[] source();
19 }