Home | History | Annotate | Download | only in regress

Lines Matching refs:slow

28 var slow = {};
31 slow.__proto__ = p;
32 slow.x = 10;
33 slow.y = 10;
49 var o1 = c(slow);
50 var o2 = c(slow);
51 var o1_strict = c(slow);
52 var o2_strict = c(slow);
53 var o3 = c(slow);
54 var o4 = c(slow);
56 // Make s slow.
57 // Do this after using slow as prototype, since using an object as prototype
59 delete slow.y;
66 delete slow.x;