package net.sourceforge.phpdt.internal.compiler.ast; import test.Token; /** * @author Matthieu Casanova */ public class NullLiteral extends MagicLiteral { public NullLiteral(final Token token) { super(token.sourceStart, token.sourceEnd); } /** * Return the expression as String. * @return the expression */ public String toStringExpression() { return "null"; } }