package codept-lib

  1. Overview
  2. Docs
module Arg : sig ... end

Arg submodule for functor arguments

module Divergence : sig ... end

Every time a module with an unknown signature is opened, it can possibly shadows all modules present in the current, or none. The Divergence module is use to store information about such divergence point, in order to be able to pinpoint to the user the exact moment where dependency computation might have gone awry.

module Origin : sig ... end

Module origin

type origin = Origin.t

Type-level tags

type extended = private
  1. | Extended
type simple = private
  1. | Simple
type tracked_signature = {
  1. origin : Origin.t;
  2. signature : signature;
}

Signature with tracked origin

and _ ty =
  1. | Sig : tracked_signature -> 'any ty
    (*

    Classic module

    *)
  2. | Alias : {
    1. path : Namespaced.t;
      (*

      Path.To.Target: projecting this path may create new dependencies

      *)
    2. phantom : Divergence.t option;
      (*

      Track potential delayed dependencies after divergent accident:

      module M = A  (* Alias { name = M; path = [A] } *)
      open Unknownable (* <- divergence *)
      open M (* Alias{ phantom = Some divergence } *)

      In the example above, M could be the local module .M, triggering the delayed alias dependency A. Or it could be a submodule Unknownable.M. Without sufficient information, codept defaults to computing an upper bound of dependencies, and therefore considers that M is .M, and the inferred dependencies for the above code snipet is {A,Unknowable} .

      *)
    } -> extended ty
  3. | Abstract : Id.t -> 'any ty
    (*

    Abstract module type may be refined during functor application, keeping track of their identity is thus important

    *)
  4. | Fun : 'a ty Arg.t option * 'a ty -> 'a ty
  5. | Namespace : dict -> extended ty
    (*

    Namespace are open bundle of modules

    *)

Core module or alias

and t = extended ty
and definition = {
  1. modules : dict;
  2. module_types : dict;
}
and signature =
  1. | Blank
    (*

    Unknown signature, used as for extern module, placeholder, …

    *)
  2. | Exact of definition
  3. | Divergence of {
    1. point : Divergence.t;
    2. before : signature;
    3. after : definition;
    }
    (*

    A divergent signature happens when a signature inference is disturbed by opening or including an unknowable module: module A = … include Extern (* <- divergence *) module B = A (* <- which A is this: .A or Extern.A ?*)

    *)
and dict = t Name.map
type sty = simple ty
type named = Name.t * t
type level =
  1. | Module
  2. | Module_type
type modul_ = t
val is_exact : t -> bool

Helper function

val is_functor : t -> bool
module Dict : sig ... end
val spirit_away : Divergence.t -> t -> t

transform to a ghost module

val md : tracked_signature -> t
val empty : 'a Name.map
val create : ?origin:origin -> signature -> tracked_signature
val with_namespace : Paths.S.t -> Name.t -> t -> named
val namespace : Namespaced.t -> named
val aliases : t -> Namespaced.t list
val mockup : ?origin:Origin.t -> ?path:Pkg.t -> Name.t -> tracked_signature

Create a mockup module with empty signature

Printers

val pp : Format.formatter -> t -> unit
val reflect : Format.formatter -> t -> unit
val pp_signature : Format.formatter -> signature -> unit
val reflect_signature : Format.formatter -> signature -> unit
val reflect_modules : Format.formatter -> dict -> unit
val pp_alias : Format.formatter -> Paths.Expr.t option -> unit
val pp_level : Format.formatter -> level -> unit
val pp_mdict : Format.formatter -> dict -> unit
val pp_pair : Format.formatter -> (string * t) -> unit
val pp_arg : Format.formatter -> t Arg.t -> unit
module Schema : sig ... end
module Def : sig ... end

Helper functions for definitions

module Equal : sig ... end

Equalities

module Sig : sig ... end

Helper functions for signature

module Partial : sig ... end

Anonymous module and other partial definitions

module Namespace : sig ... end
OCaml

Innovation. Community. Security.