Gillian_result.Error
type compilation_error = {
msg : string;
loc : Location.t option;
additional_data : Yojson.Safe.t option;
}
type t =
| AnalysisFailures of analysis_failure list
| CompilationError of compilation_error
| OperationError of string
Handled failure unrelated to analysis, e.g. unable to read input file
*)| InternalError of internal_error
Something went very wrong!
*)val pp : Stdlib.Format.formatter -> t -> unit
val show : t -> string
val to_error_code : t -> int