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