docs parsing

This commit is contained in:
nub31
2025-05-24 20:59:26 +02:00
parent 0c70710ab1
commit 1ff434e1c3
8 changed files with 84 additions and 40 deletions

View File

@@ -0,0 +1,6 @@
namespace Nub.Lang.Frontend.Lexing;
public class DocumentationToken(string documentation) : Token
{
public string Documentation { get; } = documentation;
}