This commit is contained in:
nub31
2025-05-24 21:40:48 +02:00
parent 30b3df626a
commit 43766f6d97
10 changed files with 403 additions and 20 deletions

View File

@@ -1,6 +1,6 @@
namespace Nub.Lang.Frontend.Lexing;
public class DocumentationToken(string filePath, int startIndex, int endIndex, string documentation) : Token(filePath, startIndex, endIndex)
public class DocumentationToken(SourceFile sourceFile, int startIndex, int endIndex, string documentation) : Token(sourceFile, startIndex, endIndex)
{
public string Documentation { get; } = documentation;
}