Added Required logic if not found, and added better update logic
This commit is contained in:
@@ -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"
|
||||
}
|
||||
Reference in New Issue
Block a user