js/src/jit-test/tests/for-of/array-holes-2.js

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

     1 // for-of consults Object.prototype when it encounters a hole.
     3 Object.prototype[1] = 'peek';
     4 var log = [];
     5 for (var x of [0, , 2, 3])
     6     log.push(x);
     7 assertEq(log[1], 'peek');
     8 assertEq(log.join(), "0,peek,2,3");

mercurial