Home | History | Annotate | Download | only in GetSet

Lines Matching refs:TestObject

115 function TestObject()
118 TestObject.prototype.nameSETS = 0;
119 TestObject.prototype.nameGETS = 0;
120 TestObject.prototype.__defineSetter__(cnName, cnNameSetter);
121 TestObject.prototype.__defineGetter__(cnName, cnNameGetter);
122 TestObject.prototype.name = cnDEFAULT;
124 obj = new TestObject();
148 obj2 = new TestObject();
149 status = 'obj2 = new TestObject() after 1 set, 0 gets';
156 status = 'obj2 = new TestObject() after 2 sets, 1 get';