daniel fischer wrote:
> hey nicolas,
>
> i seem to have found more trouble in neko's (or is it haxe's?) [] operator:
>
> Test.hx:
> class Test {
> static function main() {
> var a:Array<Int> = new Array<Int>();
>
> for( i in 0...5 ) {
> a.push( i );
> }
>
> trace( a[0] +","+ a[1] +","+ a[2] +","+ a[3] +","+ a[4] );
> }
> }
Thanks for the report !
It was indeed a small tricky bug in the Neko VM with constant array
accesses beyond 1. This is now fixed on CVS.
Nicolas
--
Neko : One VM to run them all
(http://nekovm.org)