Lines Matching refs:objects
28 var objects = [{prop:1}, {get prop(){return 2}}];
38 g(objects[++j]);
45 objects.push(o);
48 g(objects[0]);
49 g(objects[1]);
50 g(objects[2]);
51 g(objects[3]);
56 var objects = [Object.create({prop:1}), Object.create({get prop(){return 2}})];
64 g(objects[++j]);
73 objects.push(o);
76 g(objects[0]);
77 g(objects[1]);
78 g(objects[2]);
79 g(objects[3]);
84 var objects = [Object.create(Object.create({prop:1})), Object.create(Object.create({get prop(){return 2}}))];
92 g(objects[++j]);
101 objects.push(o);
104 g(objects[0]);
105 g(objects[1]);
106 g(objects[2]);
107 g(objects[3]);