Closed
Description
Currently, JerryScript supports selected APIs in TypedArray. For example, TypedArray.prototype.set(array, offset)` is not supported.
// h.js
var buffer = new ArrayBuffer(8);
var uint8 = new Uint8Array(buffer);
uint8.set([1,2,3], 3);
print(uint8); // console.log for node
$ node h.js
Uint8Array { '0': 0, '1': 0, '2': 0, '3': 1, '4': 2, '5': 3, '6': 0, '7': 0 }
$ jsc h.js
[object Uint8Array]
$ jerry h.js
Script Error: TypeError
Is there a plan to implement remaining APIs?