Module Stream.Mark

Position information for an event

type t = {
  1. index : int;
    (*

    position in characters

    *)
  2. line : int;
    (*

    line number

    *)
  3. column : int;
    (*

    column number

    *)
}