Paul
Paul
Would this work on a [nRF52832](https://www.nordicsemi.com/products/nrf52832) chip (512KB Flash, 64KB RAM)? Has the footprint of the runtime been measured?
A simple PR to suppress a warning: ``` warning: mjs/mjs.c:1949:5: warning: macro expansion producing 'defined' has undefined behavior [-Wexpansion-to-defined] warning: #if CS_ENABLE_STRDUP warning: ^ warning: mjs/mjs.c:1192:26: note: expanded from macro...
I'd like to only host the JSC on my device.
Is it planned/possible?
Making this test fail: https://github.com/bogdanm/udynlink/blob/4119954862d5d4c96212f29f282e5e2560158406/scripts/mkmodule#L124 Commenting the check is enough to work around that.
```c void foobar(uin32_t x, uin32_t y) { } ``` `x` and `y` both have the right value. ```c void foobar(uint64_t x, uin32_t y) { } ``` `x` has the right...
```c static int m_count = 0; void test() { print(m_count); } ``` `m_count` contains garbage. I need to add an `init` function to initialize all the global values. ```c static...
Anything that would help the user report an issue. Something a bit smarter that just a github link.
Now that https://github.com/servo/servo/issues/10338 has landed, we want browserhtml to create a prefs.json file with these preferences set: ``` json { "dom.forcetouch.enabled": true, "dom.mozbrowser.enabled": true, "gfx.webrender.enabled": true, "shell.native-titlebar.enabled": true_if_osx, "shell.homepage": fixme,...