package tezos-stdlib-unix

  1. Overview
  2. Docs

The fold function returns a list of non-fatal errors and warnings that happened during the scan, those are defined in Report.item.

type item = [
  1. | `Error of [ `Parsing_event of [ `Encoding of string * exn | `Json of string * Tezos_error_monad.Error_monad.error list ] | `Cannot_recognize_section of string ]
  2. | `Warning of [ `Expecting_regular_file_at of string | `Expecting_directory_at of string | `Unknown_event_name_at of string * string ]
]
val pp : Format.formatter -> item -> unit