Module Diagnostics.TYPES

type severity =
  1. | Hint
  2. | Note
  3. | Info
  4. | Warn
  5. | Error
type diagnostic
type diagnostics
type 'a in_result = ('a * diagnostic option, diagnostic option) Stdlib.result
type 'a with_diags = {
  1. result : 'a;
  2. diags : diagnostics;
}