summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/JSON/15.12-0-1.js
blob: 6af7fc3113c7f515f7b7f1ff14a61fd7406edf65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: |
    This test should be run without any built-ins being added/augmented.
    The name JSON must be bound to an object.
    4.2 calls out JSON as one of the built-in objects.
es5id: 15.12-0-1
description: JSON must be a built-in object
---*/

var o = JSON;

assert.sameValue(typeof(o), "object", 'typeof(o)');

reportCompare(0, 0);