package dolmen_loop

  1. Overview
  2. Docs

Module Report.TSource

Sourcetype all = [
  1. | `All
]
Sourcetype err = [
  1. | `Error of any_error
]
Sourcetype warn = [
  1. | `Warning of any_warning
]
Sourcetype t = [
  1. | all
  2. | err
  3. | warn
]
Sourceval list : unit -> t list

List all reports.

Sourceval find_mnemonic : string -> t option

Find the warning/error/group associated to a mnemonic.

Sourceval name : [< t ] -> string

Name of a report.

Sourceval mnemonic : [< t ] -> string

mnemonic of a report.

Sourceval kind : [< t ] -> string

kind of a report.

Sourceval category : [< t ] -> string

category of a report.

Sourceval doc : [< t ] -> Format.formatter -> unit

documentation for a report.