Skip to content

Commit 3c5f1a2

Browse files
committed
Check in compiler snapshot.
1 parent 3a83ada commit 3c5f1a2

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

lib/4.06.1/unstable/js_compiler.ml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26822,9 +26822,9 @@ let rec pretty_val ppf v =
2682226822
fprintf ppf "@[<2>%s@ @[(%a)@]@]" name (pretty_vals ",") vs
2682326823
end
2682426824
| Tpat_variant (l, None, _) ->
26825-
fprintf ppf "`%s" l
26825+
fprintf ppf "#%s" l
2682626826
| Tpat_variant (l, Some w, _) ->
26827-
fprintf ppf "@[<2>`%s@ %a@]" l pretty_arg w
26827+
fprintf ppf "@[<2>#%s(%a)@]" l pretty_arg w
2682826828
| Tpat_record (lvs,_) ->
2682926829
let filtered_lvs = Ext_list.filter lvs
2683026830
(function
@@ -28522,7 +28522,7 @@ let do_check_partial ?pred exhaust loc casel pss = match pss with
2852228522
with _ ->
2852328523
""
2852428524
in
28525-
Location.prerr_warning loc (Warnings.Partial_match errmsg)
28525+
Location.prerr_warning loc (Warnings.Partial_match errmsg)
2852628526
end;
2852728527
Partial
2852828528
end

lib/4.06.1/unstable/js_playground_compiler.ml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26822,9 +26822,9 @@ let rec pretty_val ppf v =
2682226822
fprintf ppf "@[<2>%s@ @[(%a)@]@]" name (pretty_vals ",") vs
2682326823
end
2682426824
| Tpat_variant (l, None, _) ->
26825-
fprintf ppf "`%s" l
26825+
fprintf ppf "#%s" l
2682626826
| Tpat_variant (l, Some w, _) ->
26827-
fprintf ppf "@[<2>`%s@ %a@]" l pretty_arg w
26827+
fprintf ppf "@[<2>#%s(%a)@]" l pretty_arg w
2682826828
| Tpat_record (lvs,_) ->
2682926829
let filtered_lvs = Ext_list.filter lvs
2683026830
(function
@@ -28522,7 +28522,7 @@ let do_check_partial ?pred exhaust loc casel pss = match pss with
2852228522
with _ ->
2852328523
""
2852428524
in
28525-
Location.prerr_warning loc (Warnings.Partial_match errmsg)
28525+
Location.prerr_warning loc (Warnings.Partial_match errmsg)
2852628526
end;
2852728527
Partial
2852828528
end

lib/4.06.1/whole_compiler.ml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186763,9 +186763,9 @@ let rec pretty_val ppf v =
186763186763
fprintf ppf "@[<2>%s@ @[(%a)@]@]" name (pretty_vals ",") vs
186764186764
end
186765186765
| Tpat_variant (l, None, _) ->
186766-
fprintf ppf "`%s" l
186766+
fprintf ppf "#%s" l
186767186767
| Tpat_variant (l, Some w, _) ->
186768-
fprintf ppf "@[<2>`%s@ %a@]" l pretty_arg w
186768+
fprintf ppf "@[<2>#%s(%a)@]" l pretty_arg w
186769186769
| Tpat_record (lvs,_) ->
186770186770
let filtered_lvs = Ext_list.filter lvs
186771186771
(function
@@ -188463,7 +188463,7 @@ let do_check_partial ?pred exhaust loc casel pss = match pss with
188463188463
with _ ->
188464188464
""
188465188465
in
188466-
Location.prerr_warning loc (Warnings.Partial_match errmsg)
188466+
Location.prerr_warning loc (Warnings.Partial_match errmsg)
188467188467
end;
188468188468
Partial
188469188469
end

0 commit comments

Comments
 (0)