This repository has been archived on 2025-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nub-lang-archive-2/src/compiler/Nub.Lang/Frontend/Lexing/DocumentationToken.cs
nub31 be144a0989 ...
2025-05-25 01:03:15 +02:00

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