Module Sourcemaps.Instruction

type t =
  1. | ShiftGenLinesResetGenCols of {
    1. lines : Prelude.int;
    }
  2. | ShiftGenCols of Prelude.int
  3. | Full of {
    1. shift_gen_col : Prelude.int;
    2. shift_src : Location.t;
    3. meta : Types.meta;
    }
val pp : Ppx_deriving_runtime.Format.formatter -> t -> Ppx_deriving_runtime.unit
val show : t -> Ppx_deriving_runtime.string
val equal : t -> t -> Ppx_deriving_runtime.bool
val encode_one : t -> Prelude.string * [ `NeedsSep | `Sep ]
val encode : t Prelude.list -> Prelude.string
val decode_one : Prelude.string -> t
val decode : Prelude.string -> t Prelude.list
val from_points : Types.point Prelude.list -> t Prelude.list
val from_spanned : Spanned.t Prelude.list -> t Prelude.list