summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/baseline/bug848743-1.js
blob: 08bf75fc9e6cfb787287fef45a38da8fa5dd93c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
function A() {};
A.prototype = [];

function B() {};
B.prototype = new A();

function C() {};
C.prototype = new B();

function D() {};
D.prototype = new C();

function E() {};
E.prototype = new D();

function f() {
    var o = new B();
    for (var i=0; i<10; i++)
	o[i] = i;

    var expected = '{"0":0,"1":1,"2":2,"3":3,"4":4,"5":5,"6":6,"7":7,"8":8,"9":9}';
    assertEq(JSON.stringify(o), expected);

    var o = new A();
    for (var i=0; i<10; i++)
	o[i] = i;

    assertEq(JSON.stringify(o), expected);

    var o = new D();
    for (var i=0; i<10; i++)
	o[i] = i;

    assertEq(JSON.stringify(o), expected);

    var o = new E();
    for (var i=0; i<10; i++)
	o[i] = i;

    assertEq(JSON.stringify(o), expected);
}
f();