Sven Sauleau
Sven Sauleau
it sounds like it's caused by a wrangler dependency, maybe upgrading it would fix the issue?
@ForthStar stared my repository (https://github.com/xtuc/Fibonacci-forth). Can I join ? Thanks in advance, Sven.
I joined, thanks ! I also made a PR to the website : https://github.com/ForthHub/forthhub.github.io/pull/1.
I think it LGTM. I'm wondering if you couldn't use an existing implementation on crates.io? Looking at the results https://crates.io/search?q=huffman, they doesn't seem commonly used tho.
Another alternative would be to use wasm-bindgen and compile it to WebAssembly. I would also be interested in adding a binast output in Babel. We just need a way to...
Good question, i'm not aware of any simple solution. I would put the JSON string into the memory and extract/parse it from JS.
Ah I had the other way around in mind, sorry. 1. Native is super confusing, you mean from existing tooling? Like Babel 2. and 3. will be very expensive? Before...
Yes I agree, it's at build/compile-time so the performance shouldn't be critical.
That's a good question, I would assume that `2` would be faster in Rust and doesn't has to be in JS.
I started to work on this. The only change in babel-loader is to emit an AST instead of the source. We need to convert our Babel AST to the ESTree,...