Source file source_code_position.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
open! Import
let hash_override { Stdlib.Lexing.pos_fname; pos_lnum; pos_bol; pos_cnum } =
String.hash pos_fname
lxor Int.hash pos_lnum
lxor Int.hash pos_bol
lxor Int.hash pos_cnum
;;
module M = struct
include Source_code_position0
let hash = hash_override
end
include M
include Comparable.Make_using_comparator (M)
let equal__local a b = equal_int (compare__local a b) 0
let of_pos (pos_fname, pos_lnum, pos_cnum, _) =
{ pos_fname; pos_lnum; pos_cnum; pos_bol = 0 }
;;