This commit is contained in:
nub31
2025-10-31 15:18:18 +01:00
parent 7c7624b1bc
commit 40d500fddd
8 changed files with 231 additions and 188 deletions

View File

@@ -105,8 +105,8 @@ public class Diagnostic
sb.AppendLine();
var text = File.ReadAllText(Span.Value.FilePath);
var tokenizer = new Tokenizer(Span.Value.FilePath, text);
tokenizer.Tokenize();
var tokenizer = new Tokenizer();
tokenizer.Tokenize(Span.Value.FilePath, text);
var lines = text.Split('\n');