16 lines
361 B
C#
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)
|
|
{
|
|
}
|
|
}
|