package net.sourceforge.phpdt.internal.compiler.ast; import java.util.List; import java.util.ArrayList; /** * the true literal. * @author Matthieu Casanova */ public class TrueLiteral extends MagicLiteral { public static final char[] source = {'t', 'r', 'u', 'e'}; public TrueLiteral(final int sourceStart, final 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$ } public String toString() { return "true";//$NON-NLS-1$ } }