traverse.ml 211 B

12345678910
  1. module C = Ast_coffee
  2. type location = int * int * int * int
  3. type location_box =
  4. | Loc_stmt of C.stmt
  5. | Loc_class_stmt of C.class_stmt
  6. | Loc_value of C.value
  7. type location_pair = location * location_box