Home | History | Annotate | Download | only in regress

Lines Matching full:prototype

9   Array.prototype.join.call(v);
10 Array.prototype.pop.call(v);
11 Array.prototype.push.call(v);
12 Array.prototype.reverse.call(v);
13 Array.prototype.shift.call(v);
14 Array.prototype.slice.call(v);
15 Array.prototype.splice.call(v);
16 Array.prototype.unshift.call(v);
23 Object.defineProperty(Number.prototype, "length", { get:length, set:length });
24 Object.defineProperty(Number.prototype, "0", { get:element, set:element });
25 Object.defineProperty(Number.prototype, "1", { get:element, set:element });
26 Object.defineProperty(Number.prototype, "2", { get:element, set:element });
33 test_receiver(11, "Array.prototype.join.call(11)")
34 test_receiver(23, "Array.prototype.pop.call(23)");
35 test_receiver(42, "Array.prototype.push.call(42, 'y')");
36 test_receiver(49, "Array.prototype.reverse.call(49)");
37 test_receiver(65, "Array.prototype.shift.call(65)");
38 test_receiver(77, "Array.prototype.slice.call(77, 1)");
39 test_receiver(88, "Array.prototype.splice.call(88, 1, 1)");
40 test_receiver(99, "Array.prototype.unshift.call(99, 'z')");