You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running ocaml-memgraph under js_of_ocaml means that the closure representation is different from native and bytecode.
For instance, trying to display the graph for (fun () () -> ()) will raise an assertion failure in mk_closinfo.
One idea would be to read Sys.backend_type to avoid reading into a closure block in the Other case.
The text was updated successfully, but these errors were encountered:
Running ocaml-memgraph under js_of_ocaml means that the closure representation is different from native and bytecode.
For instance, trying to display the graph for
(fun () () -> ())
will raise an assertion failure inmk_closinfo
.One idea would be to read
Sys.backend_type
to avoid reading into a closure block in theOther
case.The text was updated successfully, but these errors were encountered: