aantron / bisect_ppx

Code coverage for OCaml and ReScript
http://aantron.github.io/bisect_ppx/demo/
MIT License
302 stars 60 forks source link

Move the visual mark on the out-edge of a let-expression to the end of "in" #345

Closed aantron closed 3 years ago

aantron commented 4 years ago

...if the location information is rich enough to allow it. From:

let bisect_file = ast_convenience_str_opt !Common.bisect_file in
(*here*)let bisect_silent = ast_convenience_str_opt !Common.bisect_silent in

to

let bisect_file = ast_convenience_str_opt !Common.bisect_file in(*here*)
let bisect_silent = ast_convenience_str_opt !Common.bisect_silent in
aantron commented 3 years ago

It seems better how it is.