Fmlib_parse.LocatedA parsing construct located within a file.
type 'a t = Position.range * 'a'a t Type of an object which is located within a file, i.e. which has a start and an end position.
val make : Position.range -> 'a -> 'a tmake range object Make object located in range.
val value : 'a t -> 'avalue loc The located object.
val start : 'a t -> Position.tstart loc The start position of the located object loc.
val _end : 'a t -> Position.t_end loc The end position of the located object loc.
val range : 'a t -> Position.rangerange loc The pair consisting of start position and end position of the located object loc.