Files
nub-lang/src/compiler/Nub.Lang/Frontend/Lexing/DocumentationToken.cs
nub31 43766f6d97 ...
2025-05-24 21:40:48 +02:00

6 lines
247 B
C#

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;
}