michael@0: // Any copyright is dedicated to the Public Domain. michael@0: // http://creativecommons.org/licenses/publicdomain/ michael@0: // Contributors: Gary Kwong , michael@0: // Jason Orendorff michael@0: michael@0: function c(a) { michael@0: this.f = function () { a; }; michael@0: } michael@0: c(0); // set both BRANDED and GENERIC bits in global scope michael@0: Object.defineProperty(this, "f", {configurable: true, enumerable: true, value: 3}); michael@0: michael@0: reportCompare(0, 0, "");