XmlEndOfFileToken
Represents the final token to mark the EOF.
namespace AngleSharp.Parser.Xml
{
internal sealed class XmlEndOfFileToken : XmlToken
{
public XmlEndOfFileToken(TextPosition position)
: base(XmlTokenType.EndOfFile, position)
{
}
}
}