namespace AspClassic.Parser; /// /// A token representing the end of the file. /// public sealed class EndOfStreamToken : Token { /// /// Creates a new end-of-stream token. /// /// The location of the end of the stream. public EndOfStreamToken(Span span) : base(TokenType.EndOfStream, span) { } }