package js_of_ocaml-compiler

  1. Overview
  2. Docs
type fol =
  1. | Yes
  2. | No
  3. | Unknown
type t = {
  1. src : string option;
  2. name : string option;
  3. col : int;
  4. line : int;
  5. idx : int;
  6. fol : fol;
}
val zero : t
val t_of_lexbuf : Lexing.lexbuf -> t
val t_of_position : src:string option -> Lexing.position -> t
OCaml

Innovation. Community. Security.