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