Module Odoc_model.Location_
include module type of struct include Odoc_parser.Loc end
type point = Odoc_parser__Loc.point = {line : int;column : int;
}type span = Odoc_parser__Loc.span = {file : string;start : point;end_ : point;
}type !'a with_location = 'a Odoc_parser__Loc.with_location = {location : span;value : 'a;
}val set_end_as_offset_from_start : int -> span -> spanval in_string : string -> offset:int -> length:int -> span -> spanval pp : Stdlib.Format.formatter -> span -> unitval pp_span_start : Stdlib.Format.formatter -> span -> unit