Jeffrey Charles

Results 32 comments of Jeffrey Charles

I got bit by this too. Took a few hours trying to figure out why my app wasn't working. At the very least, maybe the docs should be updated to...

Latest Chrome which has a native fetch implementation. The app is a prototype purely for internal use so no need for legacy or cross-browser support. On Wed, Aug 24, 2016,...

I took a brief look at this for the purposes of avoiding unexpected behaviour on AArch64. So I focused more on the references to x86 registers and not at all...

Fair enough. Might be worth calling out that Hugo doesn't support non-Java Android languages for now in the README.

I've opened https://github.com/rust-lang/crates-build-env/pull/137 to add a couple packages. I _think_ with those two packages and vendoring the `libclang_rt.builtins-wasm32.a` archive in the crate, it should be possible to build the C...

@olabalboa No luck. There was a suggestion on https://github.com/webpack/webpack/issues/1675 about it that I haven't tried. I'd started working on a fork that fixed the packaging issues but got pulled off...

Are you trying to capture state that's been mutated from its initial form? And are you intending to create _new_ instance of your Javy module and execute the function with...

> I was expecting to serialize the function along with its outer scope Javy doesn't offer APIs for doing this beyond whatever is built into QuickJS itself. And as far...

It looks like this behaviour reproduces with the latest native QuickJS: ``` ➜ quickjs git:(master) ./qjs QuickJS - Type "\h" for help qjs > (async function() { ({ ... asdfasd;...

Javy at the present time does not support resolving imports from files in your file system. The short story for why is, during compilation, we process the JS source code...