模組 Syntaxerr

module Syntaxerr: sig .. end

用於回報語法錯誤的輔助類型

警告:此模組不穩定,屬於 compiler-libs 的一部分。


type invalid_package_type = 
| 參數化類型 (Parameterized_types)
| 約束類型 (Constrained_types)
| 私有類型 (Private_types)
| Not_with_type
| Neither_identifier_nor_with_type
type error = 
| Unclosed of Location.t * string * Location.t * string
| Expecting of Location.t * string
| Not_expecting of Location.t * string
| Applicative_path of Location.t
| Variable_in_scope of Location.t * string
| Other of Location.t
| Ill_formed_ast of Location.t * string
| Invalid_package_type of Location.t * invalid_package_type
| Removed_string_set of Location.t
exception Error of error
exception Escape_error
val location_of_error : error -> Location.t
val ill_formed_ast : Location.t -> string -> 'a