Description[runtime] Let native setters have a return value.
Native setters (see AccessorInfo in accessors.h) didn't have the ability
to return a result value. As a consequence of this, for instance, Reflect.set
on the length property of arrays had the wrong behavior:
var y = [];
Object.defineProperty(y, 0, {value: 42, configurable: false})
Reflect.set(y, 'length', 0)
The Reflect.set call used to return true. Now it returns false as
required by the spec.
BUG=v8:5401
Committed: https://crrev.com/f33a4078e8cce1da190eb425e28fe89eee8a4370
Cr-Commit-Position: refs/heads/master@{#40579}
Patch Set 1 #Patch Set 2 : . #Patch Set 3 : Rename and enforce Boolean result. #Patch Set 4 : Rebase. #Patch Set 5 : Fix bad merge. #Patch Set 6 : Update test expectation. #Patch Set 7 : Ouch. #
Messages
Total messages: 41 (32 generated)
|