Module InferModules.CIssue

type mode =
| On
| Off
type issue_desc = {
id : string;
description : string;
doc_url : string option;
mode : mode;
name : string option;
loc : InferBase.Location.t;
severity : InferIR.Exceptions.err_kind;
suggestion : string option;
}
val pp_issue : Format.formatter ‑> issue_desc ‑> unit
val should_run_check : mode ‑> bool