8 lines
285 B
C#
8 lines
285 B
C#
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;
|
|
} |