remove read only stuff

This commit is contained in:
nub31
2025-09-12 17:08:10 +02:00
parent bace846a2a
commit 314f7efc7b
15 changed files with 41 additions and 42 deletions

View File

@@ -74,7 +74,7 @@ public sealed class Tokenizer
_sourceFile = sourceFile;
}
public IReadOnlyList<Diagnostic> GetDiagnostics() => _diagnostics;
public List<Diagnostic> GetDiagnostics() => _diagnostics;
public IEnumerable<Token> Tokenize()
{