Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:setter

219 // Define an accessor that has only a setter.
231 // Add a getter - should not touch the setter.
243 // The above should also work if redefining just a getter or setter on
244 // an existing property with both a getter and a setter.
530 // Different setter.
1123 // An object with a setter on the prototype chain.
1125 function setter(x) { modifyMe = x+1; }
1135 Object.defineProperty(obj1, "romeo", { set: setter, configurable: true });
1153 // Removing a setter on the prototype chain.
1161 { get: getter, set: setter, configurable: true });