nashorn/test/script/basic/list.js.EXPECTED
author sundar
Mon, 07 Apr 2014 21:57:33 +0530
changeset 23770 cdedd86695a0
parent 16147 e63b63819133
child 27976 ef54dfb4fc7d
permissions -rw-r--r--
8039387: Nashorn supports indexed access of List elements, but length property is not supported Reviewed-by: lagergren, jlaskey

l.class.name=java.util.ArrayList
l.length=2
l.size()=2
l[0]=foo
l[1]=bar
--for each begin--
foo
bar
--for each end--
l[0]=foo
l[1]=a
l[0.9]=null
l['blah']=null
l[size_name]()=2
java.lang.IndexOutOfBoundsException: Index: 2, Size: 2
java.lang.IndexOutOfBoundsException: Index: Infinity, Size: 2
java.lang.IndexOutOfBoundsException: Index: -Infinity, Size: 2