This commit is contained in:
nub31
2025-06-26 11:58:45 +02:00
parent f82cba87f8
commit ab66916217
49 changed files with 5746 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
namespace Syntax.Tokenization;
public class DocumentationToken(SourceSpan span, string documentation) : Token(span)
{
public string Documentation { get; } = documentation;
}