Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 // When we assign to a property that a proxy claims is inherited, the
2 // defineProperty handler call to create the new own property should get
3 // the newly assigned value.
5 var hits;
6 var handlers = {
7 getOwnPropertyDescriptor: function(name) {
8 return undefined;
9 },
10 getPropertyDescriptor: function(name) {
11 return { value:42, writable:true, enumerable:true, configurable:true };
12 },
13 defineProperty: function(name, descriptor) {
14 hits++;
15 assertEq(name, 'x');
16 assertEq(descriptor.value, 43);
17 }
18 };
19 hits = 0;
20 Proxy.create(handlers).x = 43;
21 assertEq(hits, 1);