module Style : sig ... end
Symbolic styles that can be used inside messages. These styles are later converted to actual concrete styles depending on the output device. For instance, when printed to the terminal they are converted to ansi terminal styles (Ansi_color.Style.t list
values).
A user message.contents composed of an optional file location and a list of paragraphs.
The various paragraphs will be printed one after the other and will all start at the beginning of a line. They are all wrapped inside a Pp.box
.
When hints are provided, they are printed as last paragraphs and prefixed with "Hint:". Hints should give indication to the user for how to fix the issue.
module Print_config : sig ... end
val make : ?loc:Stdune__Loc0.t -> ?prefix:Style.t Pp.t -> ?hints:Style.t Pp.t list -> Style.t Pp.t list -> t
Construct a user message from a list of paragraphs.
The first paragraph is prefixed with prefix
inside the box. prefix
should not end with a space as a space is automatically inserted by make
if necessary.
val print : ?config:Print_config.t -> t -> unit
Print to stdout
(not thread safe)
val prerr : ?config:Print_config.t -> t -> unit
Print to stderr
(not thread safe)
Produces a "Did you mean ...?" hint
val to_string : t -> string
Produces a plain text representation of the error message, without the "Error: " prefix.