-
#1513 merged as ff8ff982deeb5ecb656100ba5d1be45c4e8e0979 leads to:
~~~
$ make -f ./targets/zephyr/Makefile.zephyr BOARD=qemu_x86
...
/home/pfalcon/opt/zephyr-sdk-0.8.2/sysroots/i686-pokysdk-linu…
-
So far, all projects I've looked at that use JerryScript's [native handle APIs], fail to implement proper validation on obtained native handle values. Zephyr.js, IoT.js, mbed.js, etc. are all affected…
-
It wasn't obvious to me the resulting string for APIs like `jerry_string_to_char_buffer()` isn't actually UTF-8 encoded, but CESU-8. (FWIW, I understand and agree with the rationale behind using CESU-…
-
How JerryScript works, is that any jeryr_value_t must be released once its use if finished. That means that to execute any callback which accepts args one must: 1) store all args in an adhocly allocat…
-
The General Assembly of Ecma International has announced the approval of ECMA-262 6th edition.
- http://www.infoq.com/news/2015/06/ecmascript-2015-es6
- http://www.ecma-international.org/publications/…
-
Currently JerryScript and IoT.js (libuv, http-parser) don't share their allocators, and they both have an own reserved space. However, if one space is full, there is no more memory, even if the other …
-
This is a proposal.
In [IoT.js issue #211](https://github.com/Samsung/iotjs/issues/211), I've discussed about the change of JerryScript memory allocator. The statically reserved heap makes the JerryS…
-
I've used some other JS interpreter, which includes its own debugging protocol, and can be integrated into the IDEs. For example, Eclipse can debug both the Node.js and the JS in the Web with the Chro…
-
Go to build/jerryscript/targets/mbedos5, then run `make source/pins.cpp`.
This fails, because the `Target` constructor has been removed in mbed OS 5.2 now; which is used in https://github.com/jerry…
-
Hi,
At the moment in the mbed target build, the behaviour when loading JS files is to execute main.js first, and then evaluate all the other js files (in whichever order they were turned into C files…