Module Pulselib.PulseLatentIssue

module F = Stdlib.Format
module AbductiveDomain = PulseAbductiveDomain
module Diagnostic = PulseDiagnostic

A subset of PulseDiagnostic that can be "latent", i.e. there is a potential issue in the code but we want to delay reporting until we see the conditions for the bug manifest themselves in some calling context.

type t =
  1. | AccessToInvalidAddress of Diagnostic.access_to_invalid_address
  2. | ErlangError of Diagnostic.ErlangError.t
include Ppx_compare_lib.Comparable.S with type t := t
val compare : t Base__Ppx_compare_lib.compare
include Ppx_compare_lib.Equal.S with type t := t
val equal : t Base__Ppx_compare_lib.equal
val yojson_of_t : t -> Ppx_yojson_conv_lib.Yojson.Safe.t
val pp : F.formatter -> t -> unit
val to_diagnostic : t -> Diagnostic.t
val should_report : AbductiveDomain.Summary.t -> Diagnostic.t -> [> `DelayReport of t | `ReportNow ]