/plugins/PHPParser/tags/PHPParser-1.4.2/src/net/sourceforge/phpdt/internal/compiler/ast/FalseLiteral.java
# · Java · 37 lines · 23 code · 6 blank · 8 comment · 0 complexity · cf08da095c58d5b07e4ea1f413791256 MD5 · raw file
- package net.sourceforge.phpdt.internal.compiler.ast;
- import gatchan.phpparser.parser.Token;
- import gatchan.phpparser.parser.PHPParser;
- /**
- * @author Matthieu Casanova
- */
- public class FalseLiteral extends MagicLiteral
- {
- public FalseLiteral(Token token)
- {
- super(Type.BOOLEAN, token.sourceStart, token.sourceEnd, token.beginLine, token.endLine, token.beginColumn, token.endColumn);
- }
- /**
- * Return the expression as String.
- *
- * @return the expression
- */
- @Override
- public String toStringExpression()
- {
- return "false";//$NON-NLS-1$
- }
- public String toString()
- {
- return "false";//$NON-NLS-1$
- }
- @Override
- public void analyzeCode(PHPParser parser)
- {
- }
- }