2014-07-22 01:09:02 +02:00
|
|
|
|
// Copyright (c) 2012 Ecma International. All rights reserved.
|
2015-07-17 17:42:45 +02:00
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
2014-07-22 01:09:02 +02:00
|
|
|
|
|
|
|
|
|
/*---
|
2018-01-05 18:26:51 +01:00
|
|
|
|
info: |
|
2014-07-22 01:09:02 +02:00
|
|
|
|
This test should be run without any built-ins being added/augmented.
|
|
|
|
|
The name JSON must be bound to an object.
|
|
|
|
|
Section 15 says that every built-in Function object described in this
|
|
|
|
|
section <EFBFBD> whether as a constructor, an ordinary function, or both <EFBFBD> has
|
|
|
|
|
a length property whose value is an integer. Unless otherwise specified,
|
|
|
|
|
this value is equal to the largest number of named arguments shown in
|
|
|
|
|
the section headings for the function description, including optional
|
|
|
|
|
parameters.
|
|
|
|
|
This default applies to JSON.parse, and it must exist as a function
|
|
|
|
|
taking 2 parameters.
|
2014-07-25 00:41:42 +02:00
|
|
|
|
es5id: 15.12.2-0-2
|
2014-07-22 01:09:02 +02:00
|
|
|
|
description: JSON.parse must exist as a function taking 2 parameters
|
|
|
|
|
---*/
|
|
|
|
|
|
2018-02-09 18:09:47 +01:00
|
|
|
|
var f = JSON.parse;
|
2014-07-22 01:09:02 +02:00
|
|
|
|
|
2015-08-06 18:25:42 +02:00
|
|
|
|
assert.sameValue(typeof(f), "function", 'typeof(f)');
|
|
|
|
|
assert.sameValue(f.length, 2, 'f.length');
|