Centralize error message construction
[tiger.ml.git] / compiler / src / lib / tiger / tiger_position.mli
CommitLineData
28875fec
SK
1type t =
2 { file : string
3 ; start_char : int
4 ; start_line : int
5 ; end_char : int
6 ; end_line : int
7 }
8
9val of_lexing_positions
10 : pos_start:Lexing.position
11 -> pos_end:Lexing.position
12 -> t
7c14a966
SK
13
14val to_string : t -> string
This page took 0.02331 seconds and 4 git commands to generate.