js/src/jit-test/tests/basic/proxy-assign-inherited.js

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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);

mercurial