package codept-lib

  1. Overview
  2. Docs

Functions for handling unit (aka .ml/.mli) files

module Pth = Paths.Simple

Module abbreviations

type precision =
  1. | Exact
  2. | Approx

Precision of the inferred module-level signature

type 'ext t = {
  1. path : Namespaced.t;
    (*

    module path of the compilation unit

    *)
  2. src : Pkg.t;
    (*

    source file of the compilation unit

    *)
  3. kind : M2l.kind;
  4. precision : precision;
  5. code : M2l.t;
  6. more : 'ext;
}

Base type

type ext = {
  1. signature : Module.signature;
  2. dependencies : Deps.t;
}

Extension for output type

type 'ext base = 'ext t
type s = unit t
type u = ext t
type r = u
val signature : r -> Module.signature
val deps : r -> Deps.t
val local_dependencies : r -> Deps.dep list
val update : Deps.t -> r -> r
val lift : Module.signature -> Deps.t -> s -> u

Conversion function between input and output types

val proj : u -> s
val read_file : Fault.handler -> Read.kind -> string -> Namespaced.t -> s

read_file polycy kind filename pth reads the file filename, extracting the corresponding m2l ast and associating it to the path pth. If the file is not synctatically valid Ocaml and syntax errors are not set to critical level in polycy, the approximative parser is used.

val pp : Format.formatter -> u -> unit

Pretty-printing function

val pp_input : Format.formatter -> s -> unit
type 'a pair = {
  1. ml : 'a;
  2. mli : 'a;
}

Pair of implementation/interface units

val map : ('a -> 'b) pair -> 'a pair -> 'b pair
val unimap : ('a -> 'b) -> 'a pair -> 'b pair
val adder : ('a -> 'b -> 'b) -> 'b pair -> (M2l.kind * 'a) -> 'b pair
module Group : sig ... end

Group handles pair of ml/mli files together

module Set : Set.S with type elt = u

Unit sets

OCaml

Innovation. Community. Security.