summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Boolean/no-boolean-toJSON.js
blob: e12c8049b091c66c283182b7b80efd2415bac3be (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/
 * Author: Tom Schuster
 */

JSON.stringify(new Boolean(false), function(k, v) { 
    assertEq(typeof v, "object"); 
});

assertEq(Boolean.prototype.hasOwnProperty('toJSON'), false);

Object.prototype.toJSON = function() { return 2; };
assertEq(JSON.stringify(new Boolean(true)), "2");

if (typeof reportCompare === 'function')
    reportCompare(true, true);