package codex

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module BinarytraceSource

Sourceval outc_trace : out_channel option ref
Sourceval marshal_flags : 'a list
Sourceval counter : int ref
Sourceval rejected : int ref
Sourcetype trace_line =
  1. | Node : {
    1. loc : 'a Syntax_tree.Location_identifier.t option;
    2. category : string;
    3. content : string;
    } -> trace_line
  2. | Single : {
    1. severity : int;
    2. category : string;
    3. content : string;
    } -> trace_line
  3. | Result of string option
Sourcemodule type S = sig ... end
Sourcemodule To_file : S
include module type of struct include In_Memory end
Sourceval init : unit -> unit
Sourceval close : unit -> unit
Sourceval add_trace_to_file : string -> trace_line -> unit
Sourceval read_all_items : ?file:string -> unit -> trace_line list