15.12-0-1.js (481B)
1 // Copyright (c) 2012 Ecma International. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 info: | 6 This test should be run without any built-ins being added/augmented. 7 The name JSON must be bound to an object. 8 4.2 calls out JSON as one of the built-in objects. 9 es5id: 15.12-0-1 10 description: JSON must be a built-in object 11 ---*/ 12 13 var o = JSON; 14 15 assert.sameValue(typeof(o), "object", 'typeof(o)'); 16 17 reportCompare(0, 0);