Bruno Deferrari
Bruno Deferrari
Hi @mweichert, at the moment there are no plans for supporting Windows. In the meantime you could run TezEdge with Docker, or maybe [WSL](https://docs.microsoft.com/en-us/windows/wsl/about)
@rickyvetter do you know if the current context API is final? It is a bit cumbersome and not obvious right now. Since it is not documented yet and was not...
Functor bundling everything: ```reason module type CONFIG = { type t; let initialValue: t; }; module Make = (Config: CONFIG) => { type t = Config.t; let context = React.createContext(Config.initialValue);...
@lbuczkow hello! The issue is that you are running out of space in the prolog vector (initialized [here](https://github.com/Shen-Language/shen-sources/blob/546ed4626c0ec47113d22824ef69c74fc1bb312d/sources/declarations.shen#L71)). You can increase the size by calling the `prolog-memory` function: `(prolog-memory 1e5)`...
@zshipko this is not complete (in particular, I have to go through ocaml-derive to get a better idea of what should change), but if you have any comment, suggestion, question,...
Hi @zshipko! I haven't been active on this during the last week because I got sidetracked and been working on something else, but I plan to get back to this...
@zshipko I'm thinking that `#[ocaml::roots(a)]` may not be necessary, because if you need them you can just open a new frame. What is important is that the OCaml runtime handle...
@zshipko that is a valid implementation, yes. But eventually, I would like to get rid of that macro because the code is horrible. Note also that `ocaml_export!` doesn't do some...
Great. I expect to finish the new caller-saved args version of `ocaml_export!` soon, and then I can take a look at that branch.
@g2p that is great, thank you. Please note that right now I'm making some changes (#16 and #17) to the calling convention (switching to a caller-rooting approach, and getting rid...