browser.js |
|
0 |
define-properties.js |
---
es6id: 26.1.3
description: >
Define properties from the attributes object.
info: |
26.1.3 Reflect.defineProperty ( target, propertyKey, attributes )
...
6. Return target.[[DefineOwnProperty]](key, desc).
includes: [propertyHelper.js]
features: [Reflect]
--- |
883 |
define-symbol-properties.js |
---
es6id: 26.1.3
description: >
Define symbol properties.
info: |
26.1.3 Reflect.defineProperty ( target, propertyKey, attributes )
...
2. Let key be ToPropertyKey(propertyKey).
...
7.1.14 ToPropertyKey ( argument )
...
3. If Type(key) is Symbol, then
a. Return key.
...
features: [Reflect, Symbol]
--- |
1070 |
defineProperty.js |
---
es6id: 26.1.3
description: >
Reflect.defineProperty is configurable, writable and not enumerable.
info: |
26.1.3 Reflect.defineProperty ( target, propertyKey, attributes )
17 ECMAScript Standard Built-in Objects
includes: [propertyHelper.js]
features: [Reflect]
--- |
551 |
length.js |
---
es6id: 26.1.3
description: >
Reflect.defineProperty.length value and property descriptor
includes: [propertyHelper.js]
features: [Reflect]
--- |
442 |
name.js |
---
es6id: 26.1.3
description: >
Reflect.defineProperty.name value and property descriptor
info: |
26.1.3 Reflect.defineProperty ( target, propertyKey, attributes )
17 ECMAScript Standard Built-in Objects
includes: [propertyHelper.js]
features: [Reflect]
--- |
573 |
not-a-constructor.js |
---
esid: sec-ecmascript-standard-built-in-objects
description: >
Reflect.defineProperty 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]
--- |
933 |
return-abrupt-from-attributes.js |
---
es6id: 26.1.3
description: >
Return abrupt from ToPropertyDescriptor(attributes).
info: |
26.1.3 Reflect.defineProperty ( target, propertyKey, attributes )
...
4. Let desc be ToPropertyDescriptor(attributes).
5. ReturnIfAbrupt(desc).
...
features: [Reflect]
--- |
667 |
return-abrupt-from-property-key.js |
---
es6id: 26.1.3
description: >
Return abrupt from ToPropertyKey(propertyKey)
info: |
26.1.3 Reflect.defineProperty ( target, propertyKey, attributes )
...
2. Let key be ToPropertyKey(propertyKey).
3. ReturnIfAbrupt(key).
...
features: [Reflect]
--- |
580 |
return-abrupt-from-result.js |
---
es6id: 26.1.3
description: >
Return abrupt result on defining a property.
info: |
26.1.3 Reflect.defineProperty ( target, propertyKey, attributes )
...
6. Return target.[[DefineOwnProperty]](key, desc).
...
9.1.6.1 OrdinaryDefineOwnProperty (O, P, Desc)
1. Let current be O.[[GetOwnProperty]](P).
2. ReturnIfAbrupt(current).
...
features: [Proxy, Reflect]
--- |
739 |
return-boolean.js |
---
es6id: 26.1.3
description: >
Return boolean result of the property definition.
info: |
26.1.3 Reflect.defineProperty ( target, propertyKey, attributes )
...
6. Return target.[[DefineOwnProperty]](key, desc).
features: [Reflect]
--- |
1028 |
shell.js |
---
description: |
Test if a given function is a constructor function.
defines: [isConstructor]
features: [Reflect.construct]
--- |
596 |
target-is-not-object-throws.js |
---
es6id: 26.1.3
description: >
Throws a TypeError if target is not an Object.
info: |
26.1.3 Reflect.defineProperty ( target, propertyKey, attributes )
1. If Type(target) is not Object, throw a TypeError exception.
...
features: [Reflect]
--- |
754 |
target-is-symbol-throws.js |
---
es6id: 26.1.3
description: >
Throws a TypeError if target is a Symbol
info: |
26.1.3 Reflect.defineProperty ( target, propertyKey, attributes )
1. If Type(target) is not Object, throw a TypeError exception.
...
features: [Reflect, Symbol]
--- |
509 |