File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 49
49
* Runtime: fix caml_string_concat when not using JS strings (#1874 )
50
50
* Runtime: consistent bigarray hashing across all architectures (#1977 )
51
51
* Tools: fix jsoo_mktop and jsoo_mkcmis (#1877 )
52
+ * Toplevel: fix for when use-js-strings is disabled (#1997 )
52
53
53
54
# 6.0.1 (2025-02-07) - Lille
54
55
Original file line number Diff line number Diff line change @@ -133,10 +133,10 @@ module Sys = struct
133
133
| `Double_translation
134
134
]
135
135
136
- external effects_ : unit -> string = " caml_jsoo_flags_effects"
136
+ external effects_ : unit -> Js .t = " caml_jsoo_flags_effects"
137
137
138
138
let effects () =
139
- match effects_ () with
139
+ match Js. to_string ( effects_ () ) with
140
140
| "disabled" -> `Disabled
141
141
| "cps" -> `Cps
142
142
| "double-translation" -> `Double_translation
You can’t perform that action at this time.
0 commit comments