Module Values.CodeLineSource

The line of code where a finding was detected.

Sourcetype nonrec t = {
  1. number : Integer.t option;
    (*

    The code line number.

    *)
  2. content : String_.t option;
    (*

    The code that contains a vulnerability.

    *)
}
Sourceval make : ?number:??? -> ?content:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t