using Nub.Lang.Frontend.Diagnostics; namespace Nub.Lang.Frontend.Lexing; public class DocumentationToken(SourceText sourceText, int startIndex, int endIndex, string documentation) : Token(sourceText, startIndex, endIndex) { public string Documentation { get; } = documentation; }