partic2

Results 7 issues of partic2

below code cause a RuntimeError ``` t1=js2py.translate_js(''' var t1 = { f1: function () { return '1' }, get f2() { return '0' } }; ''') ``` This patch fix...

https://github.com/partic2/pwart A lightweight WebAssembly JIT compiler and runtime , powered by sljit. Languages written in C Compiler framework SLJIT Compilation / Execution modes JIT Interoperability with other languages N/A Non-MVP...

At https://github.com/saghul/txiki.js/blob/6e01bf4a0cbc1aba6dcdddf1d0aa67df287ce420/src/js/polyfills/event-target.js#L95-L103 txiki.js seem to always return null for Event.target According to https://developer.mozilla.org/en-US/docs/Web/API/Event/target It should be the eventTarget on where dispatchEvent called. Maybe we can simply fix it by below...

Sometime I need "fetch" from https website without valid certificate. In which case I want to disable ssl certificate verifiy. Maybe add ```c curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0); curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0); ```...