feat: parse content text (base case).

This commit is contained in:
mattia
2025-02-16 18:26:28 +01:00
parent b7aae9a04f
commit d386c50499
32 changed files with 940 additions and 6 deletions

5
InkBlot/Error.cs Normal file
View File

@@ -0,0 +1,5 @@
namespace InkBlot;
public record Range(int StartLine, int StartColumn, int EndLine, int EndColumn);
public record Diagnostic(string FileName, Range Range, string Message, string Context);