Konstantin A. Olkhovskiy
Konstantin A. Olkhovskiy
More modern recipe using ppxlib will be something like this: ``` #require "ppxlib";; #require "ppxlib.metaquot";; # open Ppxlib;; # let loc = Location.none;; # [%expr 1+1];; ``` An alias in...
BLAKE3 would be really nice to have in digestif library. There are rust bindings on opam for this hash implementation, but that won't work for JS platform obviously.
It seems that semantic parsing was broken due to my .merlin file issue related to lack of ppx information. After I fixed this I have hover tooltips even inside ill-highlighted...
Seems that virtual classes are not accepted by gen_js_api 😞
Sad to see this abandoned. Just stumbled across this problem when trying to bind some nodejs to jsoo with gen_js_api myself and hand to resort to defining globals and using...
But there are some nuances, 64bit integers are encoded as strings, along with some special float values.  Also field names are adapted to OCaml Snake_case notation, while in protobuf...
Changing `fun` to `switch` works as expected. ```reason let foo = () => { switch (whatever) { | Some(_) => [%expr x => switch (x) { | Some(_) => ()...
I ended up coding my bindings in pure ocaml due to this issue, and the fact that gen_js_api does not support reason natively and additional rules with reftm were awkward.
Neat! My dune-fu is not so strong, I'll leverage this approach once the issue is fixed :)
This is still an issue... Any news on this?