Home
last modified time | relevance | path

Searched refs:TwoItemConstructor (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/v8/test/webkit/fast/js/
Darray-functions-non-arrays-expected.txt32 PASS properties(new TwoItemConstructor) is '0:b(FromPrototype), 1:a(FromPrototype), length:2(FromPr…
48 PASS Array.prototype.join.call(new TwoItemConstructor) is 'b,a'
52 PASS Array.prototype.pop.call(new TwoItemConstructor) is 'a'
56 PASS Array.prototype.pop.call(x = new TwoItemConstructor); properties(x) is '0:b(FromPrototype), 1:…
60 PASS Array.prototype.push.call(new TwoItemConstructor) is 2
64 PASS Array.prototype.push.call(x = new TwoItemConstructor); properties(x) is '0:b(FromPrototype), 1…
68 PASS Array.prototype.push.call(new TwoItemConstructor, 'c') is 3
72 PASS Array.prototype.push.call(x = new TwoItemConstructor, 'c'); properties(x) is '0:b(FromPrototyp…
77 PASS properties(Array.prototype.reverse.call(new TwoItemConstructor)) is '0:a, 1:b, length:2(FromPr…
81 PASS Array.prototype.shift.call(new TwoItemConstructor) is 'b'
[all …]
Darray-functions-non-arrays.js91 function TwoItemConstructor() class
94 TwoItemConstructor.prototype = twoItemPrototype;