Lines Matching full:obj2
102 var obj2 = {};
105 Object.defineProperty(obj2, 'x', { get: get, set: set, configurable: true });
107 desc = Object.getOwnPropertyDescriptor(obj2, 'x');
113 assertTrue(Object.isExtensible(obj2));
114 assertFalse(Object.isSealed(obj2));
115 Object.seal(obj2);
119 assertTrue(Object.isFrozen(obj2));
120 assertFalse(Object.isExtensible(obj2));
121 assertTrue(Object.isSealed(obj2));
123 desc = Object.getOwnPropertyDescriptor(obj2, 'x');
129 obj2.foo = 42;
130 assertEquals(obj2.foo, undefined);