browser.js |
|
0 |
delete-properties.js |
---
es6id: 26.1.4
description: >
Delete property.
info: |
26.1.4 Reflect.deleteProperty ( target, propertyKey )
...
4. Return target.[[Delete]](key).
features: [Reflect]
--- |
460 |
delete-symbol-properties.js |
---
es6id: 26.1.4
description: >
Delete a symbol property.
info: |
26.1.4 Reflect.deleteProperty ( target, propertyKey )
...
2. Let key be ToPropertyKey(propertyKey).
...
7.1.14 ToPropertyKey ( argument )
...
3. If Type(key) is Symbol, then
a. Return key.
...
features: [Reflect, Symbol]
--- |
639 |
deleteProperty.js |
---
es6id: 26.1.4
description: >
Reflect.deleteProperty is configurable, writable and not enumerable.
info: |
26.1.4 Reflect.deleteProperty ( target, propertyKey )
17 ECMAScript Standard Built-in Objects
includes: [propertyHelper.js]
features: [Reflect]
--- |
539 |
length.js |
---
es6id: 26.1.4
description: >
Reflect.deleteProperty.length value and property descriptor
includes: [propertyHelper.js]
features: [Reflect]
--- |
442 |
name.js |
---
es6id: 26.1.4
description: >
Reflect.deleteProperty.name value and property descriptor
info: |
26.1.4 Reflect.deleteProperty ( target, propertyKey )
17 ECMAScript Standard Built-in Objects
includes: [propertyHelper.js]
features: [Reflect]
--- |
561 |
not-a-constructor.js |
---
esid: sec-ecmascript-standard-built-in-objects
description: >
Reflect.deleteProperty 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-property-key.js |
---
es6id: 26.1.4
description: >
Return abrupt from ToPropertyKey(propertyKey)
info: |
26.1.4 Reflect.deleteProperty ( target, propertyKey )
...
2. Let key be ToPropertyKey(propertyKey).
3. ReturnIfAbrupt(key).
...
features: [Reflect]
--- |
568 |
return-abrupt-from-result.js |
---
es6id: 26.1.4
description: >
Return abrupt result from deleting a property.
info: |
26.1.4 Reflect.deleteProperty ( target, propertyKey )
...
6. Return target.[[DefineOwnProperty]](key, desc).
...
features: [Proxy, Reflect]
--- |
593 |
return-boolean.js |
---
es6id: 26.1.4
description: >
Return boolean result.
info: |
26.1.4 Reflect.deleteProperty ( target, propertyKey )
...
4. Return target.[[Delete]](key).
features: [Reflect]
--- |
626 |
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.4
description: >
Throws a TypeError if target is not an Object.
info: |
26.1.4 Reflect.deleteProperty ( target, propertyKey )
1. If Type(target) is not Object, throw a TypeError exception.
...
features: [Reflect]
--- |
726 |
target-is-symbol-throws.js |
---
es6id: 26.1.4
description: >
Throws a TypeError if target is a Symbol
info: |
26.1.4 Reflect.deleteProperty ( target, propertyKey )
1. If Type(target) is not Object, throw a TypeError exception.
...
features: [Reflect, Symbol]
--- |
493 |