Lines Matching refs:unshift
103 PASS Array.prototype.unshift.call({}) is 0
104 PASS Array.prototype.unshift.call(['b', 'a']) is 2
105 PASS Array.prototype.unshift.call({ length:2, 0:'b', 1:'a' }) is 2
106 PASS Array.prototype.unshift.call(new TwoItemConstructor) is 2
107 PASS Array.prototype.unshift.call(x = {}); properties(x) is 'length:0'
108 PASS Array.prototype.unshift.call(x = ['b', 'a']); properties(x) is '0:b, 1:a, length:2(DontDelete,…
109 PASS Array.prototype.unshift.call(x = { length:2, 0:'b', 1:'a' }); properties(x) is '0:b, 1:a, leng…
110 PASS Array.prototype.unshift.call(x = new TwoItemConstructor); properties(x) is '0:b(FromPrototype)…
111 PASS Array.prototype.unshift.call({}, 'c') is 1
112 PASS Array.prototype.unshift.call(['b', 'a'], 'c') is 3
113 PASS Array.prototype.unshift.call({ length:2, 0:'b', 1:'a' }, 'c') is 3
114 PASS Array.prototype.unshift.call(new TwoItemConstructor, 'c') is 3
115 PASS Array.prototype.unshift.call(x = {}, 'c'); properties(x) is '0:c, length:1'
116 PASS Array.prototype.unshift.call(x = ['b', 'a'], 'c'); properties(x) is '0:c, 1:b, 2:a, length:3(D…
117 PASS Array.prototype.unshift.call(x = { length:2, 0:'b', 1:'a' }, 'c'); properties(x) is '0:c, 1:b,…
118 PASS Array.prototype.unshift.call(x = new TwoItemConstructor, 'c'); properties(x) is '0:c, 1:b, 2:a…