Skip to content

Commit

Permalink
ocamlformat
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierNicole committed Jul 16, 2024
1 parent 7bbcff7 commit 568041d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion compiler/lib/source_map.ml
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,14 @@ module Mappings = struct
~str:mapping
~init:{ carry_source = 0; carry_line = 0; carry_col = 0; carry_name = 0 }
(fun { carry_source; carry_line; carry_col; carry_name } str ~pos ~len ->
update_carries_from_line ~carry_source ~carry_line ~carry_col ~carry_name ~pos ~len str)
update_carries_from_line
~carry_source
~carry_line
~carry_col
~carry_name
~pos
~len
str)

let concat ~source_count1 ~name_count1 (Uninterpreted m1) (Uninterpreted m2) =
match m1, m2 with
Expand Down

0 comments on commit 568041d

Please sign in to comment.