Module Tokenizer.Errors

Parse error types.

type t = {
  1. code : string;
  2. line : int;
  3. column : int;
}
val make : code:string -> line:int -> column:int -> t
val to_string : t -> string