js/src/jit-test/tests/basic/bug613151.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 // Iterating over a property with an Array id.
     2 function n() {}
     3 function g() {}
     4 eval("\
     5   function a() {}\
     6   function b() {\
     7     for (w in this) {}\
     8     Object.defineProperty(\
     9       this, \
    10       new Array, \
    11       ({enumerable: true})\
    12     )\
    13   }\
    14   for (z in [0, 0, 0]) b()\
    15 ")
    17 // Test it doesn't assert.

mercurial