This commit is contained in:
dutchie031
2026-06-15 19:51:59 +02:00
parent ba292ad7aa
commit 16e76d96d3
8 changed files with 397 additions and 281 deletions
+9
View File
@@ -0,0 +1,9 @@
export interface CompilationError {
filePath: string;
line: number;
charStart?: number;
charEnd?: number;
message: string;
}