Module Astral_internal.ParserException
type what = | Builtin of what| Variable| Sort| Structure| Constructor
type parser_error = | SyntaxError of string| NotSupported of string| SortError of string * actual * expected| NotDeclared of what * string| Redefined of what * string
exception ParserError of tval raise_syntax_error : Dolmen_std.Loc.t option -> string -> 'aval raise_not_supported : Dolmen_std.Loc.t option -> string -> 'aval raise_sort_error :
Dolmen_std.Loc.t option ->
name:string ->
actual:actual ->
expected:expected ->
'a