16 lines
367 B
C#
16 lines
367 B
C#
namespace AspClassic.Parser;
|
|
|
|
/// <summary>
|
|
/// A parse tree for Nothing.
|
|
/// </summary>
|
|
public sealed class GlobalExpression : Expression
|
|
{
|
|
/// <summary>
|
|
/// Constructs a new parse tree for Global.
|
|
/// </summary>
|
|
/// <param name="span">The location of the parse tree.</param>
|
|
public GlobalExpression(Span span)
|
|
: base(TreeType.GlobalExpression, span)
|
|
{
|
|
}
|
|
}
|