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