This commit is contained in:
nub31
2025-05-25 01:03:15 +02:00
parent 8ca72a1fe3
commit fac2c95d05
18 changed files with 543 additions and 445 deletions

View File

@@ -1,4 +1,6 @@
namespace Nub.Lang.Frontend.Lexing;
using Nub.Lang.Frontend.Diagnostics;
namespace Nub.Lang.Frontend.Lexing;
public class IdentifierToken(SourceFile sourceFile, int startIndex, int endIndex, string value) : Token(sourceFile, startIndex, endIndex)
{