Module Css_parser_common.Location

type t = Warnings.loc = {
  1. loc_start : Lexing.position;
  2. loc_end : Lexing.position;
  3. loc_ghost : bool;
}
val sexp_of_t : t -> Sexplib0.Sexp.t
include Ppx_compare_lib.Equal.S with type t := t
val equal : t -> t -> bool
val to_string : t -> string
val of_positions : start:Lexing.position -> end_:Lexing.position -> t
val merge : start:t -> end_:t -> t
val between_tokens : start:(Token.t * t) -> end_:(Token.t * t) -> t
val from_token : (Token.t * t) -> t