package goblint

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. mutable file : GoblintCil.Cil.file option;
  2. mutable max_ids : MaxIdUtil.max_ids;
  3. input : Batteries.IO.input;
  4. output : unit Batteries.IO.output;
}
module type Request = sig ... end
module Registry : sig ... end
val registry : Registry.t
module ParamParser (R : Request) : sig ... end
module Function : sig ... end
val handle_request : t -> Jsonrpc.Request.t -> Jsonrpc.Response.t
val handle_packet : t -> Jsonrpc.Packet.t -> unit
val serve : t -> unit
val make : ?input:BatIO.input -> ?output:unit BatIO.output -> GoblintCil.Cil.file option -> t
val bind : unit -> BatInnerIO.input option * unit BatInnerIO.output option
val start : GoblintCil.Cil.file option -> unit
val reparse : t -> GoblintCil.file * bool
val virtual_changes : GoblintCil.file -> CompareCIL.change_info
val increment_data : t -> GoblintCil.file -> bool -> Analyses.increment_data * bool
val analyze : ?reset:bool -> t -> unit