This commit is contained in:
nub31
2025-05-26 19:16:56 +02:00
parent 973d14ef29
commit 955869a3cf
18 changed files with 124 additions and 156 deletions

View File

@@ -2,7 +2,7 @@ using Nub.Lang.Frontend.Diagnostics;
namespace Nub.Lang.Frontend.Lexing;
public class ModifierToken(SourceFile sourceFile, int startIndex, int endIndex, Modifier modifier) : Token(sourceFile, startIndex, endIndex)
public class ModifierToken(SourceText sourceText, int startIndex, int endIndex, Modifier modifier) : Token(sourceText, startIndex, endIndex)
{
public Modifier Modifier { get; } = modifier;
}