blob: c2e306f531592b253a1106e04017f6dd7f1a41f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* 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);
|