blob: 8c37b76759208b4792125f6f1fa7faefaf273800 [file] [log] [blame]
function test(makeNonArray) {
function C() {}
C.prototype = []
c = new C();
c.push("foo");
return c.length
}
assertEq(test(true), 1);
var a = [];
var b = Object.create(a);