Skip to content
Snippets Groups Projects
traverse.ml 211 B
Newer Older
module C = Ast_coffee

type location = int * int * int * int

type location_box =
  | Loc_stmt of C.stmt
  | Loc_class_stmt of C.class_stmt
  | Loc_value of C.value

type location_pair = location * location_box