Source code

Revision control

Copy as Markdown

Other Tools

// Any copyright is dedicated to the Public Domain.
const ThrowTypeError = function(){
"use strict";
return Object.getOwnPropertyDescriptor(arguments, "callee").get;
}();
assertDeepEq(Object.getOwnPropertyDescriptor(ThrowTypeError, "length"), {
value: 0, writable: false, enumerable: false, configurable: false
});
assertEq(Object.isFrozen(ThrowTypeError), true);
if (typeof reportCompare == "function")
reportCompare(true, true);