| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- //
- // Test changing [writable] attribute should trigger Type transition.
- //
- var echo = this.WScript ? WScript.Echo : function () { console.log([].join.apply(arguments, [", "])); };
- function assert(value, msg) { if (!value) { throw new Error("Failed: " + msg); } }
- function endTest() { echo("pass"); }
- //
- // Win8: 713428
- //
- // When CLEAR writable on a SHARED SimpleTypeHandler, we fail to ChangeType, thus fail to invalidate cache.
- // This test exploits the bug with inline cache.
- //
- function changePrototype(f, expectedSucceed, msg) {
- var tmp = new Object();
- // This exploits inline cache
- f.prototype = tmp;
- var succeeded = (f.prototype === tmp);
- assert(succeeded === expectedSucceed, msg);
- }
- // Initially we use a shared SimpleTypeHandler with "prototype" property for a function.
- function f() { }
- changePrototype(f, true, "Should be able to change f.prototype initially");
- Object.defineProperty(f, "prototype", { writable: false });
- changePrototype(f, false, "f.prototype is now not writable, shouldn't be changed");
- endTest();
|