Added Required logic if not found, and added better update logic

This commit is contained in:
2026-09-19 22:07:07 +02:00
parent 45c988c989
commit dcd1bf25e7
14 changed files with 661 additions and 735 deletions
+10
View File
@@ -6,4 +6,14 @@ export interface CompilationError {
charStart?: number;
charEnd?: number;
message: string;
type: CompilationErrorType;
metaData?: Map<string, any>;
}
export enum CompilationErrorType {
Syntax = "Syntax",
Semantic = "Semantic",
Runtime = "Runtime",
DependencyCircular = "DependencyCircular",
DependencyNotFound = "DependencyNotFound"
}