aspclassic-core/AspClassic.Parser/LineTerminatorToken.cs
Jelle Luteijn 484dbfc9d9 progress
2022-05-15 11:19:49 +02:00

16 lines
361 B
C#

namespace AspClassic.Parser;
/// <summary>
/// A line terminator.
/// </summary>
public sealed class LineTerminatorToken : Token
{
/// <summary>
/// Create a new line terminator token.
/// </summary>
/// <param name="span">The location of the line terminator.</param>
public LineTerminatorToken(Span span)
: base(TokenType.LineTerminator, span)
{
}
}