package yaml

  1. Overview
  2. Docs

Position information for an event

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

    position in characters

    *)
  2. line : int;
    (*

    line number

    *)
  3. column : int;
    (*

    column number

    *)
}