js/src/jit-test/tests/basic/testSetPropertyFail.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 function test(name, fn, val) {
     2     gc();
     3     var ok = {}, bad = {};
     4     bad.__defineSetter__(name, fn);
     5     var arr = [ok, ok, ok, ok, ok, bad];
     7     var log = '';
     8     try {
     9         for (var i = 0; i < arr.length; i++) {
    10             arr[i][name] = val;
    11             log += '.';
    12         }
    13     } catch (exc) {
    14         log += 'E';
    15     }
    16     assertEq(log, '.....E');
    17 }
    19 test("x", Function.prototype.call, null);  // TypeError: Function.prototype.call called on incompatible [object Object]
    20 test("y", Array, 0.1);                     // RangeError: invalid array length
    21 test(1, Function.prototype.call, null);  // TypeError: Function.prototype.call called on incompatible [object Object]
    22 test(1, Array, 0.1);                     // RangeError: invalid array length

mercurial