6 lines
247 B
C#
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;
|
|
} |