Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review: https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 // |jit-test| error: InternalError
2
3 Array.prototype.__proto__ = Proxy.create({
4 getPropertyDescriptor: function(name) {
5 return (560566);
6 },
7 }, null);
8 function f() {}
9 function g() { }
10 var x = [f,f,f,undefined,g];
11 for (var i = 0; i < 5; ++i)
12 y = x[i]("x");