Marko Mikulicic
Marko Mikulicic
yeah this is is long overdue. we just provided the unamalgamation script for mongoose. I'd like to do the same for v7, stay tuned.
Please use the unamalgam tool from mongoose repo: https://github.com/cesanta/mongoose/tree/master/tools
yeah, it's a known problem. We currently treat `eval` as a normal function. This issue will be fixed when we finally implement compact stack frames for function calls; for that...
BTW, @kyriosli, what is your use case ?
just a clarification/nitpick: you cannot use the same v7 instance concurrently by different threads. You can keep a pool of v7 instances and have a thread use one v7 context...
hi! currently v7_exec_file will recognize the header of the precompiled file (filename extension is not significant): ``` sh $ ./v7 -c test.js >test.jsc $ ./v7 test.jsc ``` Do you need...
yes, it makes sense; there are other reasons where the user doesn't have a null terminated string. The rest of the API always accepts string+len
yes I agree; I think it should be brought back
yeah direct support for 32-bit integers something we are considering. No ETA but I'd like to have it. We'd first like to focus on some internal refactoring and stability before...
Yes, in order to simplify the VM internals and make it fit in the smallest microcontrollers we decided to skip the implementation of getters and setters for now. Only system...