Module Odoc_model.Location_
type point={line : int;column : int;}type span={file : string;start : point;end_ : point;}type +'a with_location={location : span;value : 'a;}
val at : span -> 'a -> 'a with_locationval location : 'a with_location -> spanval value : 'a with_location -> 'aval map : ('a -> 'b) -> 'a with_location -> 'b with_locationval same : _ with_location -> 'b -> 'b with_locationval span : span list -> spanval nudge_start : int -> span -> spanval set_end_as_offset_from_start : int -> span -> spanval in_string : string -> offset:int -> length:int -> span -> span