summaryrefslogtreecommitdiff
path: root/test/built-ins/JSON/15.12-0-1.js
blob: 7dcb5975bda04f0690fc0f69e2ac91bd4b61d4b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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)');