| isExtensible.js |
---
es6id: 26.1.10
description: >
Reflect.isExtensible is configurable, writable and not enumerable.
info: |
26.1.10 Reflect.isExtensible (target)
17 ECMAScript Standard Built-in Objects
includes: [propertyHelper.js]
features: [Reflect]
--- |
498 |
- |
| length.js |
---
es6id: 26.1.10
description: >
Reflect.isExtensible.length value and property descriptor
includes: [propertyHelper.js]
features: [Reflect]
--- |
417 |
- |
| name.js |
---
es6id: 26.1.10
description: >
Reflect.isExtensible.name value and property descriptor
info: |
26.1.10 Reflect.isExtensible (target)
17 ECMAScript Standard Built-in Objects
includes: [propertyHelper.js]
features: [Reflect]
--- |
518 |
- |
| not-a-constructor.js |
---
esid: sec-ecmascript-standard-built-in-objects
description: >
Reflect.isExtensible 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: [Reflect.construct, Reflect, arrow-function]
--- |
891 |
- |
| return-abrupt-from-result.js |
---
es6id: 26.1.10
description: >
Return abrupt result.
info: |
26.1.10 Reflect.isExtensible (target)
...
2. Return target.[[IsExtensible]]().
features: [Proxy, Reflect]
--- |
503 |
- |
| return-boolean.js |
---
es6id: 26.1.10
description: >
Returns the boolean result.
info: |
26.1.10 Reflect.isExtensible (target)
...
2. Return target.[[IsExtensible]]().
features: [Reflect]
--- |
466 |
- |
| target-is-not-object-throws.js |
---
es6id: 26.1.10
description: >
Throws a TypeError if target is not an Object.
info: |
26.1.10 Reflect.isExtensible (target)
1. If Type(target) is not Object, throw a TypeError exception.
...
features: [Reflect]
--- |
661 |
- |
| target-is-symbol-throws.js |
---
es6id: 26.1.10
description: >
Throws a TypeError if target is a Symbol
info: |
26.1.10 Reflect.isExtensible (target)
1. If Type(target) is not Object, throw a TypeError exception.
...
features: [Reflect, Symbol]
--- |
449 |
- |