Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
A parsing construct located within a file.
val make : Position.range -> 'a -> 'a t
make range object
Make object
located in range
.
val value : 'a t -> 'a
value loc
The located object.
val start : 'a t -> Position.t
start 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.range
range loc
The pair consisting of start position and end position of the located object loc
.