Source code

Revision control

Copy as Markdown

Other Tools

/*
* Any copyright is dedicated to the Public Domain.
*/
var BUGNUMBER = 1076588;
var summary = "Object.freeze() should return its argument with no conversion when the argument is a primitive value";
print(BUGNUMBER + ": " + summary);
assertEq(Object.freeze(), undefined);
assertEq(Object.freeze(undefined), undefined);
assertEq(Object.freeze(null), null);
assertEq(Object.freeze(1), 1);
assertEq(Object.freeze("foo"), "foo");
assertEq(Object.freeze(true), true);
if (typeof Symbol === "function") {
assertEq(Object.freeze(Symbol.for("foo")), Symbol.for("foo"));
}
if (typeof reportCompare === "function")
reportCompare(true, true);