81 array[item++] =newTestCase( SECTION,"var s = new String(''); s.lastIndexOf('', 0)",LastIndexOf("","",0),eval("var s = new String(''); s.lastIndexOf('', 0)") );
82 array[item++] =newTestCase( SECTION,"var s = new String(''); s.lastIndexOf('')",LastIndexOf("",""),eval("var s = new String(''); s.lastIndexOf('')") );
83 array[item++] =newTestCase( SECTION,"var s = new String('hello'); s.lastIndexOf('', 0)",LastIndexOf("hello","",0),eval("var s = new String('hello'); s.lastIndexOf('',0)") );
84 array[item++] =newTestCase( SECTION,"var s = new String('hello'); s.lastIndexOf('')",LastIndexOf("hello",""),eval("var s = new String('hello'); s.lastIndexOf('')") );
86 array[item++] =newTestCase( SECTION,"var s = new String('hello'); s.lastIndexOf('ll')",LastIndexOf("hello","ll"),eval("var s = new String('hello'); s.lastIndexOf('ll')") );
87 array[item++] =newTestCase( SECTION,"var s = new String('hello'); s.lastIndexOf('ll', 0)",LastIndexOf("hello","ll",0),eval("var s = new String('hello'); s.lastIndexOf('ll', 0)") );
88 array[item++] =newTestCase( SECTION,"var s = new String('hello'); s.lastIndexOf('ll', 1)",LastIndexOf("hello","ll",1),eval("var s = new String('hello'); s.lastIndexOf('ll', 1)") );
89 array[item++] =newTestCase( SECTION,"var s = new String('hello'); s.lastIndexOf('ll', 2)",LastIndexOf("hello","ll",2),eval("var s = new String('hello'); s.lastIndexOf('ll', 2)") );
90 array[item++] =newTestCase( SECTION,"var s = new String('hello'); s.lastIndexOf('ll', 3)",LastIndexOf("hello","ll",3),eval("var s = new String('hello'); s.lastIndexOf('ll', 3)") );
91 array[item++] =newTestCase( SECTION,"var s = new String('hello'); s.lastIndexOf('ll', 4)",LastIndexOf("hello","ll",4),eval("var s = new String('hello'); s.lastIndexOf('ll', 4)") );
92 array[item++] =newTestCase( SECTION,"var s = new String('hello'); s.lastIndexOf('ll', 5)",LastIndexOf("hello","ll",5),eval("var s = new String('hello'); s.lastIndexOf('ll', 5)") );
93 array[item++] =newTestCase( SECTION,"var s = new String('hello'); s.lastIndexOf('ll', 6)",LastIndexOf("hello","ll",6),eval("var s = new String('hello'); s.lastIndexOf('ll', 6)") );
95 array[item++] =newTestCase( SECTION,"var s = new String('hello'); s.lastIndexOf('ll', 1.5)",LastIndexOf('hello','ll',1.5),eval("var s = new String('hello'); s.lastIndexOf('ll', 1.5)") );
96 array[item++] =newTestCase( SECTION,"var s = new String('hello'); s.lastIndexOf('ll', 2.5)",LastIndexOf('hello','ll',2.5),eval("var s = new String('hello'); s.lastIndexOf('ll', 2.5)") );
97 array[item++] =newTestCase( SECTION,"var s = new String('hello'); s.lastIndexOf('ll', -1)",LastIndexOf('hello','ll', -1),eval("var s = new String('hello'); s.lastIndexOf('ll', -1)") );
98 array[item++] =newTestCase( SECTION,"var s = new String('hello'); s.lastIndexOf('ll', -1.5)",LastIndexOf('hello','ll', -1.5),eval("var s = new String('hello'); s.lastIndexOf('ll', -1.5)") );
100 array[item++] =newTestCase( SECTION,"var s = new String('hello'); s.lastIndexOf('ll', -Infinity)",LastIndexOf("hello","ll",-Infinity),eval("var s = new String('hello'); s.lastIndexOf('ll', -Infinity)") );
101 array[item++] =newTestCase( SECTION,"var s = new String('hello'); s.lastIndexOf('ll', Infinity)",LastIndexOf("hello","ll",Infinity),eval("var s = new String('hello'); s.lastIndexOf('ll', Infinity)") );
102 array[item++] =newTestCase( SECTION,"var s = new String('hello'); s.lastIndexOf('ll', NaN)",LastIndexOf("hello","ll",NaN),eval("var s = new String('hello'); s.lastIndexOf('ll', NaN)") );
103 array[item++] =newTestCase( SECTION,"var s = new String('hello'); s.lastIndexOf('ll', -0)",LastIndexOf("hello","ll",-0),eval("var s = new String('hello'); s.lastIndexOf('ll', -0)") );
104for(var i =0; i < ("[object Object]").length; i++ ) {