1509737f7db3f92790f3754e85e1ac9d5f71d95d
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / TrueLiteral.java
1 package net.sourceforge.phpdt.internal.compiler.ast;
2
3 import test.Token;
4
5 import java.util.List;
6 import java.util.ArrayList;
7
8 /**
9  * the true literal.
10  * @author Matthieu Casanova
11  */
12 public class TrueLiteral extends MagicLiteral {
13
14   public TrueLiteral(Token token) {
15     super(token.sourceStart, token.sourceEnd);
16   }
17
18   /**
19    * Return the expression as String.
20    * @return the expression
21    */
22   public String toStringExpression() {
23     return "true";//$NON-NLS-1$
24   }
25
26   public String toString() {
27     return "true";//$NON-NLS-1$
28   }
29 }