package camlon

  1. Overview
  2. Docs

Module Camlon.SyntaxerrSource

Auxiliary type for reporting syntax errors

Sourcetype error =
  1. | Unclosed of Location.t * string * Location.t * string
  2. | Expecting of Location.t * string
  3. | Not_expecting of Location.t * string
  4. | Applicative_path of Location.t
  5. | Variable_in_scope of Location.t * string
  6. | Other of Location.t
  7. | Ill_formed_ast of Location.t * string
  8. | Invalid_package_type of Location.t * string
Sourceexception Error of error
Sourceexception Escape_error
Sourceval report_error : Format.formatter -> error -> unit
Sourceval location_of_error : error -> Location.t
Sourceval ill_formed_ast : Location.t -> string -> 'a