blob: c2e306f531592b253a1106e04017f6dd7f1a41f5 [file] [log] [blame]
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
*/
assertEq(raisesException(TypeError)('Number.prototype.toSource.call("")'), true);
assertEq(raisesException(TypeError)('Number.prototype.toSource.call(true)'), true);
assertEq(raisesException(TypeError)('Number.prototype.toSource.call({})'), true);
assertEq(raisesException(TypeError)('Number.prototype.toSource.call(null)'), true);
assertEq(raisesException(TypeError)('Number.prototype.toSource.call([])'), true);
assertEq(raisesException(TypeError)('Number.prototype.toSource.call(undefined)'), true);
assertEq(raisesException(TypeError)('Number.prototype.toSource.call(new Boolean(true))'), true);
assertEq(completesNormally('Number.prototype.toSource.call(42)'), true);
assertEq(completesNormally('Number.prototype.toSource.call(new Number(42))'), true);
reportCompare(true, true);