kjm00king / sharpkit

Automatically exported from code.google.com/p/sharpkit
0 stars 0 forks source link

Typed array initiliazation #303

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
This fails:
var a1 = new Int32Array(-1, 1);
Instead this code is needed:
var a1 = new Int32Array([-1, 1]);

Original issue reported on code.google.com by DanelK...@gmail.com on 21 Jul 2013 at 1:24

GoogleCodeExporter commented 8 years ago
This issue was fixed in skc rev. 27

Original comment by sebastia...@gmail.com on 4 Nov 2013 at 9:36