Lines Matching refs:frozen
162 // writable property, is not classified as frozen.
171 // configurable property, is not classified as frozen.
179 // Make sure that Object.freeze returns the frozen object.
200 // Frozen objects should share maps where possible
210 // Frozen objects should share maps even when they have elements
308 // if frozen implies sealed, then the tests in object-seal.js are mostly
341 function Frozen() {}
342 Object.freeze(Frozen);
343 assertDoesNotThrow(function() { return new Frozen(); });
344 Frozen.prototype.prototypeExists = true;
345 assertTrue((new Frozen()).prototypeExists);