1 package net.sourceforge.phpdt.internal.compiler.ast;
4 import java.util.ArrayList;
8 * @author Matthieu Casanova
10 public class TrueLiteral extends MagicLiteral {
12 public static final char[] source = {'t', 'r', 'u', 'e'};
14 public TrueLiteral(final int sourceStart, final int sourceEnd) {
15 super(sourceStart, sourceEnd);
18 public char[] source() {
23 * Return the expression as String.
24 * @return the expression
26 public String toStringExpression() {
27 return "true";//$NON-NLS-1$
30 public String toString() {
31 return "true";//$NON-NLS-1$