package net.sourceforge.phpdt.internal.compiler.ast; /** * @author Matthieu Casanova */ public class TrueLiteral extends MagicLiteral { public static final char[] source = {'t', 'r', 'u', 'e'}; public TrueLiteral(int sourceStart, int sourceEnd) { super(sourceStart, sourceEnd); } public char[] source() { return source; } /** * Return the expression as String. * @return the expression */ public String toStringExpression() { return "true";//$NON-NLS-1$ } }