basic.js |
---
esid: sec-json.israwjson
description: Basic functionality of JSON.isRawJSON()
info: |
JSON.isRawJSON ( O )
1. If Type(O) is Object and O has an [[IsRawJSON]] internal slot, return true.
2. Return false.
features: [json-parse-with-source]
--- |
965 |
browser.js |
|
0 |
builtin.js |
---
esid: sec-json.israwjson
description: >
JSON.isRawJSON meets the requirements for built-in objects
info: |
JSON.isRawJSON ( O )
18 ECMAScript Standard Built-in Objects
...
Unless specified otherwise, a built-in object that is callable as a function
is a built-in function object with the characteristics described in 10.3.
Unless specified otherwise, the [[Extensible]] internal slot of a built-in
object initially has the value true. Every built-in function object has a
[[Realm]] internal slot whose value is the Realm Record of the realm for
which the object was initially created.
...
Unless otherwise specified every built-in function and every built-in
constructor has the Function prototype object, which is the initial value of
the expression Function.prototype (20.2.3), as the value of its [[Prototype]]
internal slot.
...
Built-in function objects that are not identified as constructors do not
implement the [[Construct]] internal method unless otherwise specified in the
description of a particular function.
features: [json-parse-with-source]
--- |
1973 |
length.js |
---
esid: sec-built-in-function-objects
description: >
JSON.isRawJSON.length value and descriptor.
info: |
Every built-in function object, including constructors, has a *"length"*
property whose value is a non-negative integral Number. Unless otherwise
specified, this value is the number of required parameters shown in the
subclause heading for the function description. Optional parameters and rest
parameters are not included in the parameter count.
Unless otherwise specified, the *"length"* property of a built-in function
object has the attributes { [[Writable]]: *false*, [[Enumerable]]: *false*,
[[Configurable]]: *true* }.
includes: [propertyHelper.js]
features: [json-parse-with-source]
--- |
1213 |
name.js |
---
esid: sec-built-in-function-objects
description: >
JSON.isRawJSON.name value and descriptor.
info: |
Every built-in function object, including constructors, has a *"name"*
property whose value is a String. Unless otherwise specified, this value is
the name that is given to the function in this specification. Functions that
are identified as anonymous functions use the empty String as the value of
the *"name"* property. For functions that are specified as properties of
objects, the name value is the property name string used to access the
function. Functions that are specified as get or set accessor functions of
built-in properties have *"get"* or *"set"* (respectively) passed to the
prefix parameter when calling CreateBuiltinFunction.
The value of the *"name"* property is explicitly specified for each built-in
function whose property key is a Symbol value. If such an explicitly
specified value starts with the prefix *"get "* or *"set "* and the function
for which it is specified is a get or set accessor function of a built-in
property, the value without the prefix is passed to the name parameter, and
the value *"get"* or *"set"* (respectively) is passed to the prefix
parameter when calling CreateBuiltinFunction.
Unless otherwise specified, the *"name"* property of a built-in function
object has the attributes { [[Writable]]: *false*, [[Enumerable]]: *false*,
[[Configurable]]: *true* }.
includes: [propertyHelper.js]
features: [json-parse-with-source]
--- |
2047 |
not-a-constructor.js |
---
esid: sec-ecmascript-standard-built-in-objects
description: >
JSON.isRawJSON does not implement [[Construct]], is not new-able
info: |
ECMAScript Function Objects
Built-in function objects that are not identified as constructors do not
implement the [[Construct]] internal method unless otherwise specified in
the description of a particular function.
sec-evaluatenew
...
7. If IsConstructor(constructor) is false, throw a TypeError exception.
...
includes: [isConstructor.js]
features: [json-parse-with-source, Reflect.construct]
--- |
1085 |
prop-desc.js |
---
esid: sec-json.israwjson
description: >
Property type and descriptor.
info: |
JSON.isRawJSON ( O )
18 ECMAScript Standard Built-in Objects
...
Every other data property described in clauses 19 through 28 and in Annex B.2
has the attributes { [[Writable]]: true, [[Enumerable]]: false,
[[Configurable]]: true } unless otherwise specified.
includes: [propertyHelper.js]
features: [json-parse-with-source]
--- |
883 |
shell.js |
---
description: |
Test if a given function is a constructor function.
defines: [isConstructor]
features: [Reflect.construct]
--- |
596 |