Jorge Romero

Results 12 comments of Jorge Romero

Let me try that out. The issue is made explicit due to Deno's test sanitizer, if I understand correctly. So in a normal script the program ends with no visible...

Here's an update. Running `destroy` after `run` does not fix the error. But unbinding the function before `run` does free the resources. Unbinding the function results in the `unsafeCallback` being...

Maybe the problem is that `#callbacks` is a Map. And `Object.keys()` is not behaving as expected?

Here is what I tried: First change `destroy()` to ``` destroy() { for (const callback of this.#callbacks) { this.unbind(callback[0]); // just get the string name of the callback. } lib.symbols.webview_terminate(this.#handle);...

I'll look into this one 😅😅😅

The only thing left to figure out before starting on tests is the server-client problem I am currently figuring out. See #12

The way I am approaching this is by rewriting much of the code I had into modules that can be easily testable See #29 :D

I want to use react-three-fiber which will not work with Preact, sadly. So I think I may just go with React...

I'll create a docs category for several branches to work on. - `docs/website` - `docs/manual` and so (or maybe do that on another repo?)

Hopefully this will also help with designing and implementing tests. See #19