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 ModifierToken(string filePath, int startIndex, int endIndex, Modifier modifier) : Token(filePath, startIndex, endIndex)
public class ModifierToken(SourceFile sourceFile, int startIndex, int endIndex, Modifier modifier) : Token(sourceFile, startIndex, endIndex)
{
public Modifier Modifier { get; } = modifier;
}