Module ASTLanguage.CIssue

type mode =
| On
| Off
val should_run_check : mode -> bool
type t = {
issue_type : IBase.IssueType.t;
description : string;

Description in the error message

mode : mode;
loc : IBase.Location.t;

location in the code

severity : IBase.IssueType.severity;
suggestion : string option;

an optional suggestion or correction

}
val pp : Stdlib.Format.formatter -> t -> unit