namespace AspClassic.Parser;
///
/// A parse tree for Nothing.
///
public sealed class NothingExpression : Expression
{
public override bool IsConstant => true;
///
/// Constructs a new parse tree for Nothing.
///
/// The location of the parse tree.
public NothingExpression(Span span)
: base(TreeType.NothingExpression, span)
{
}
}