aboutsummaryrefslogtreecommitdiff
path: root/css/lib/location.ml
blob: 23e9c49864810bb4b4c9887d53f8b7bb86efb71d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
type t = {

  loc_start : Lexing.position;
  loc_end : Lexing.position;
  loc_ghost : bool;
}

let none =
  { loc_start = Lexing.dummy_pos
  ; loc_end = Lexing.dummy_pos
  ; loc_ghost = true
  }

let  register_error_of_exn _ = ()

let error ~loc ?(sub=[]) _ =
  let _ = loc
  and _ = sub in
  ()