1 package net.sourceforge.phpdt.internal.compiler.ast;
4 * Here is the Superclass of the Literal expressions.
5 * @author Matthieu Casanova
7 public abstract class Literal extends Expression {
11 * @param sourceStart starting offset
12 * @param sourceEnd ending offset
14 public Literal(int sourceStart, int sourceEnd) {
15 super(sourceStart, sourceEnd);
18 public abstract char[] source();