Lines Matching refs:arr3
1167 var arr3 = ['hello']; variable
1168 arr3[2] = 'goodbye';
1169 arr3.length = 6;
1177 Object.observe(arr3, observer.callback);
1178 Array.observe(arr3, observer2.callback);
1186 arr3.length = 0;
1187 ++arr3.length;
1188 arr3.length++;
1189 arr3.length /= 2;
1190 Object.defineProperty(arr3, 'length', {value: 5});
1191 arr3[4] = 5;
1192 Object.defineProperty(arr3, 'length', {value: 1, writable: false});
1205 { object: arr3, name: '2', type: 'delete', oldValue: 'goodbye' },
1206 { object: arr3, name: '0', type: 'delete', oldValue: 'hello' },
1207 { object: arr3, name: 'length', type: 'update', oldValue: 6 },
1208 { object: arr3, name: 'length', type: 'update', oldValue: 0 },
1209 { object: arr3, name: 'length', type: 'update', oldValue: 1 },
1210 { object: arr3, name: 'length', type: 'update', oldValue: 2 },
1211 { object: arr3, name: 'length', type: 'update', oldValue: 1 },
1212 { object: arr3, name: '4', type: 'add' },
1213 { object: arr3, name: '4', type: 'delete', oldValue: 5 },
1218 { object: arr3, name: 'length', type: 'update', oldValue: 5 },
1219 { object: arr3, name: 'length', type: 'reconfigure' }
1227 { object: arr3, type: 'splice', index: 0, removed: ['hello',, 'goodbye',,,,], addedCount: 0 },
1228 { object: arr3, type: 'splice', index: 0, removed: [], addedCount: 1 },
1229 { object: arr3, type: 'splice', index: 1, removed: [], addedCount: 1 },
1230 { object: arr3, type: 'splice', index: 1, removed: [,], addedCount: 0 },
1231 { object: arr3, type: 'splice', index: 1, removed: [], addedCount: 4 },
1232 { object: arr3, name: '4', type: 'add' },
1233 { object: arr3, type: 'splice', index: 1, removed: [,,,5], addedCount: 0 }