Beluga_parser.Located_token
Lexer tokens annotated with locations.
type token = Token.t
type location = Beluga_syntax.Location.t
type t = private {
location : location;
token : token;
}
val make : location:location -> token:token -> t
val location : t -> location
val token : t -> token