Skip to content
Snippets Groups Projects
Commit d1d91af2 authored by Henrique Ferreiro's avatar Henrique Ferreiro Committed by Tom Care
Browse files

Integer indexed property descriptor must be non-configurable (#786)

* Integer indexed property descriptor must be non-configurable

* Make the configurable key explicitly 'false'
parent c9569a7e
No related branches found
No related tags found
No related merge requests found
...@@ -24,7 +24,7 @@ testWithTypedArrayConstructors(function(TA) { ...@@ -24,7 +24,7 @@ testWithTypedArrayConstructors(function(TA) {
assert.sameValue( assert.sameValue(
Reflect.defineProperty(sample, "-1", { Reflect.defineProperty(sample, "-1", {
value: 42, value: 42,
configurable: true, configurable: false,
enumerable: true, enumerable: true,
writable: true writable: true
}), }),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment