Home | History | Annotate | Download | only in regress

Lines Matching refs:first

40 function first(x, y) { return x; }
48 function test0() { return first((y = 1, typeof x0), 2); }
57 function test1() { return first((y += 1, typeof x1), 2); }
64 function test2() { return first((++y, typeof x2), 2); }
70 function test3() { return first((y++, typeof x3), 2); }
79 function test4() { return first((o.x = 1, typeof x4), 2); }
85 function test5() { return first((o.x += 1, typeof x5), 2); }
91 function test6() { return first((++o.x, typeof x6), 2); }
97 function test7() { return first((o.x++, typeof x7), 2); }
106 function test8(index) { return first((o[index] = 1, typeof x8), 2); }
112 function test9(index) { return first((o[index] += 1, typeof x9), 2); }
118 function test10(index) { return first((++o[index], typeof x10), 2); }
124 function test11(index) { return first((o[index]++, typeof x11), 2); }