| SMLDoc |
structure ParserUtil =
struct
structure PositionMap : sig
type pos = int
type operations =
{
posToLocation : pos -> int * int,
makeMessage : string * pos * pos -> string,
onNewLine : int -> unit
}
val create : string -> operations
end =
struct
type pos = int
type operations =
{
posToLocation : pos -> int * int,
makeMessage : string * pos * pos -> string,
onNewLine : int -> unit
}
val create : string -> operations
end
end
| SMLDoc: Documentation generator for SML |