js/src/jit-test/tests/auto-regress/bug700295.js

branch
TOR_BUG_3246
changeset 7
129ffea94266
equal deleted inserted replaced
-1:000000000000 0:df0190f106a4
1 // Binary: cache/js-dbg-64-1210706b4576-linux
2 // Flags:
3 //
4
5 this.__proto__ = null;
6 Object.prototype.__proto__ = this;
7 function exploreProperties(obj) {
8 var props = [];
9 for (var o = obj; o; o = Object.getPrototypeOf(o)) {
10 props = props.concat(Object.getOwnPropertyNames(o));
11 }
12 for (var i = 0; i < props.length; ++i) {
13 var p = props[i];
14 var v = obj[p];
15 }
16 }
17 var c = [{}];
18 exploreProperties(c);

mercurial