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