Lines Matching full:seal
28 // Tests the Object.seal and Object.isSealed methods - ES 15.2.3.9 and
37 Object.seal(non_objects[key]);
40 assertTrue(/Object.seal called on non-object/.test(e));
71 Object.seal(obj);
95 // Since writable is not affected by seal we should still be able to
114 Object.seal(obj2);
131 // Test seal on arrays.
146 Object.seal(arr);
192 // Make sure that Object.seal returns the sealed object.
194 assertTrue(obj4 === Object.seal(obj4));